将child添加到空扩展节点时,树不会刷新

时间:2013-06-24 15:56:09

标签: actionscript-3 actionscript air flex4

我将mx:Tree绑定到我的类Parent的对象。 Parent具有子级的ArrayCollection。当我展开一个空节点并添加一些子节点时,在我折叠并展开此节点之前它不会刷新。如果节点已经有子节点,一切正常,新节点立即出现。我该如何解决?

    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                           xmlns:s="library://ns.adobe.com/flex/spark"
                           xmlns:mx="library://ns.adobe.com/flex/mx">

        <fx:Script>
            <![CDATA[
    import mx.collections.ArrayCollection;
                [Bindable]
                public var selectedNode:Parent;

                [Bindable]
                public var treeData:ArrayCollection = new ArrayCollection();

                public function treeChanged(evt:Event):void {
                    selectedNode = Tree(evt.target).selectedItem as Parent;
                }

                public function btnClick():void 
                {
                    if (selectedNode)
                    {
                        (selectedNode as Parent).children.addItem(new Parent());
                    }
                    else 
                    {
                        treeData.addItem(new Parent());
                    }

                }
            ]]>
        </fx:Script>


        <s:Panel title="Halo Tree Control Example"
                width="75%" height="75%"
                horizontalCenter="0" verticalCenter="0">
            <s:VGroup left="10" right="10" top="10" bottom="10">
                <mx:Button click="{btnClick()}" label="Add"></mx:Button>

                <mx:HDividedBox width="100%" height="100%">
                    <mx:Tree id="myTree" width="50%" height="100%" labelField="@label"
                            showRoot="false" dataProvider="{treeData}" change="treeChanged(event);"/>
                    <s:TextArea height="100%" width="50%"
                            text="Selected Item: {selectedNode}"/>
                </mx:HDividedBox>
            </s:VGroup>

        </s:Panel>
    </s:WindowedApplication>

家长班:

    package  
    {
        import mx.collections.ArrayCollection;
        public class Parent 
        {
            private var _children:ArrayCollection = new ArrayCollection();

            public function Parent() 
            {

            }

            [Bindable]
            public function get children():ArrayCollection 
            {
                return _children;
            }

            public function set children(value:ArrayCollection):void 
            {
                _children = value;
            }
        }
    }

1 个答案:

答案 0 :(得分:3)

您可以使用invalidateList()的{​​{1}}方法告诉树在下一个生命周期更新时刷新自己:

Tree