Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have added an event handler for itemOpening event for the tree component inside the handler basically ido myTree.selectedItem = event.item ; and then add the new data inside myTree.selectedItem.children.push(newData); But It do not show simultaneously instead I have to close , open the branch again to see the new data . I think I need to refresh something after adding new data but dont know what ? below is the code but without the declaration , script tag etc

<services:DocumentService id="$document"/>
        <s:CallResponder id="$newFolderAdded" result="$newFolderAdded_resultHandler(event)"/>


     <mx:Tree  id="myTree" width="100%" height="60%" creationComplete="myTree_creationCompleteHandler(event)"
                 labelField="name" itemOpening="myTree_itemClickHandler(event)" />

    protected function myTree_itemClickHandler(event:TreeEvent):void
                {
                     myTree.selectedItem = event.item;
                    if(event.item.hasOwnProperty('children'))
                   {
                       $newFolderAdded.token =  $document.getDirectDecendents(event.item);

                   }
                }

        protected function $newFolderAdded_resultHandler(event:ResultEvent):void
                {
                    for each(var folder:Object in event.result)
                    {
                    myTree.selectedItem.children.push(Object(folder));

                    }


                }
share|improve this question

1 Answer

up vote 1 down vote accepted

Try invalidating the data of the tree by calling:

myTree.invalidateList();
share|improve this answer
thanks it did the trick :) – Mr Coder Feb 11 '11 at 8:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.