我想按代码选择infinite grid
中的任意一行。方法grid.getSelectionModel().selectAll()
不起作用。当我尝试循环遍历行并选择grid.getSelectionModel().select(i, true)
行时,它对前1000行工作正常。之后,它会停止(我猜是因为缓冲?)。
for (var i = 0; i < store.getTotalCount(); i++) {
me.getGrid().getSelectionModel().select(i, true);
}
如何解决此问题?
答案 0 :(得分:0)
你试过这个吗?
me.getGrid().getSelectionModel().selectAll();
为此您必须将网格配置设置如下:
selModel: {
mode: 'MULTI'
}
有一篇与ExtJs6无限网格问题相关的文章,您将得到解决方法: