我第一次加载完整的树结构。
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?
最佳答案
看来childNodes
仅填充了实际元素。在扩展该节点之前,不需要它们。
您正在寻找的是treePanel.root.attributes.children
。其中包含三个要素。
关于extjs - Ext JS树,在扩展根节点之前,childNodes为空(加载完整树结构),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6106045/