我想滚动到最后一行或选定的项目或 rowIndex
我尝试以下情况:
grid.setScrollTop(rowIndex); // not working
grid.getView().focusRow(rowIndex);// not working
// not working
var idx = this.getStore().indexOfId(rowIndex);
var rowEl = this.getView().getRow(idx);
rowEl.scrollIntoView(this.getGridEl(), false);
他们都不起作用,我该怎么做谢谢
编辑:
我有一个窗口,包括一个网格面板,当我添加一个新项目时,我希望滚动窗口持续感谢
编辑 2:
请参阅我的示例:http: //jsfiddle.net/h9Dy9/当我添加一些新项目时滚动窗口必须移到最后一个或选择项目。