我们如何根据某些条件隐藏 ExtJs 4.1 TreePanel 中的某些节点?我们可以通过这样做在 ExtJs 3.4 中隐藏节点:
tree.getRootNode().cascade(function() { // descends into child nodes
if(this.attributes['status'] == 100) { // test this node
this.getUI().hide() // hide this node
}
})
但是 ExtJs 4.1 不再支持这种方法。