Ext JS 树,在展开根节点之前 childNodes 为空(加载完整的树结构)

发布于 2024-11-09 12:02:13 字数 649 浏览 0 评论 0原文

我第一次加载完整树结构。

var tree = new Ext.tree.TreePanel({
    title   : 'Simple Tree',
    width   : 300,
    height  : 300,
    root    : new Ext.tree.AsyncTreeNode({
        children : [
            { text :  'one',    leaf : true },
            { text :  'two',    leaf : true },
            { text :  'three',  leaf : true }
        ]
    })
});
Ext.onReady(function(){
    tree.render(Ext.getBody());
});

并尝试这个..

treePanel.root.childNodes // []

但是在我展开根节点并重试之后,

treePanel.root.childNodes // [obj, obj, obj]

我可以在不展开根节点的情况下获取子节点吗?

I load FULL tree structure at first time.

var tree = new Ext.tree.TreePanel({
    title   : 'Simple Tree',
    width   : 300,
    height  : 300,
    root    : new Ext.tree.AsyncTreeNode({
        children : [
            { text :  'one',    leaf : true },
            { text :  'two',    leaf : true },
            { text :  'three',  leaf : true }
        ]
    })
});
Ext.onReady(function(){
    tree.render(Ext.getBody());
});

and try this..

treePanel.root.childNodes // []

But after I expand root node and try again

treePanel.root.childNodes // [obj, obj, obj]

Can I get childNodes without expand root node ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小矜持 2024-11-16 12:02:13

看起来 childNodes 仅填充了实际元素。在扩展该节点之前,不需要它们。

您正在寻找的是treePanel.root.attributes.children。其中包含三个要素。

It appears that childNodes is only populated with actual elements. Before you expand that node they are not needed.

What you are looking for is treePanel.root.attributes.children. That has three elements in it.

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