在扩展根节点之前将Ext JS树,childNodes清空(加载完整树结构)

时间:2011-05-24 05:26:24

标签: extjs tree

我第一次加载 FULL 树结构。

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]

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

1 个答案:

答案 0 :(得分:1)

childNodes似乎只填充了实际元素。在展开该节点之前,不需要它们。

您要找的是treePanel.root.attributes.children。这有三个要素。