如何根据XML节点属性选择Tree中的节点?

发布于 2024-10-12 05:31:12 字数 428 浏览 4 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月苍老的讽刺 2024-10-19 05:31:12
var xml: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>;

//find node conta with id=4 using xml selectors
var node:XML = xml.descendants("conta").(@id == 4)[0];
tree.selectedItem = node;

如果不是,您可能需要打开节点父节点,mx:Tree 可能不会自动执行此操作。

var xml: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>;

//find node conta with id=4 using xml selectors
var node:XML = xml.descendants("conta").(@id == 4)[0];
tree.selectedItem = node;

You might need to open node parents if they are not, mx:Tree might not do this automatically.

拔了角的鹿 2024-10-19 05:31:12

对于选择,您可以使用 this.myTree.selectedIndex=4,完成后,它应该自动可见。

For selection you can use, this.myTree.selectedIndex=4, that done, it should become visible automatically.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文