xmllist动态添加删除节点问题
在<mx:XMLList id="Client_list" xmlns="">
<node label="房间管理">
</node>
</mx:XMLList>
怎样动态添加、删除其节点或者子节点?
[解决办法]
var collection:XMLListCollection = new XMLListCollection(Client_list); collection.addItem(item);collection.addItemAt(item,index);collection.removeItemAt(index);collection.removeAll();
[解决办法]
var collection:XMLListCollection
设置为绑定对象[Bindable],
tree里面添加或删除节点会自动的通知Tree来重新绘制。
如果是更改里面的内容,使用collection.itemUpdated方法
或者使用collection.refresh()方法