我有一个RecordWriter
和一个扩展树并选择一个特定节点的过程。问题是 - 我不知道如何滚动到这个节点,以便它变得可见。我尝试了这两种方法,我在stackoverflow和其他论坛上看到过:
piggybank
答案 0 :(得分:1)
看看这个:http://jsfiddle.net/slemmon/P9TkZ/3/。 您可能必须使用tree.selectPath而不是SelectionModel:
tree.selectPath('/Root/path/to/your/node', 'text', '/', function (s, n) {
var nodeEl = Ext.get(tree.view.getNode(n));
nodeEl.scrollIntoView(tree.view.el, false, true);
});
答案 1 :(得分:1)
使用selectPath method
tree.selectPath(node.getPath())