我第一次加载 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吗?
答案 0 :(得分:1)
childNodes
似乎只填充了实际元素。在展开该节点之前,不需要它们。
您要找的是treePanel.root.attributes.children
。这有三个要素。