Extjs4 treepanel 选中当前 节点

Extjs3 中 可以这样获取 this.getNodeById(targetId).select();     //this 代表当前treepanel对象

Extjs4 没有了 treeNode。所以只能通过this.getSelectionModel().select(currentNode);  //currentNode表示当前要选中的node

你可能感兴趣的:(Extjs4 treepanel 选中当前 节点)