我将 mx:Tree 绑定到我的 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;
}
}
}