如何根据XML节点属性选择Tree中的节点?
我的 mxml 中有一个树,它使用 XMLListCollection 作为 dataProvider。它的 XML 就像:
<list>
<conta nome="Plano de Contas" id="1">
<conta nome="Creditos" id="2" />
<conta nome="Vendas" id="4" />
<conta nome="Juros" id="5" />
<conta nome="Debitos" id="3" />
</conta>
</list>
如何使 id==4 的节点可见并被选中?
谢谢。
I have a tree im my mxml that uses a XMLListCollection as dataProvider. It´s XML is like:
<list>
<conta nome="Plano de Contas" id="1">
<conta nome="Creditos" id="2" />
<conta nome="Vendas" id="4" />
<conta nome="Juros" id="5" />
<conta nome="Debitos" id="3" />
</conta>
</list>
How can I make the node for, say, id==4 visible AND selected?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果不是,您可能需要打开节点父节点,mx:Tree 可能不会自动执行此操作。
You might need to open node parents if they are not, mx:Tree might not do this automatically.
对于选择,您可以使用 this.myTree.selectedIndex=4,完成后,它应该自动可见。
For selection you can use, this.myTree.selectedIndex=4, that done, it should become visible automatically.