Ext GridPanel加载完数据后进行操作示例代码

Ext GridPanel加载完数据后进行操作,比如load数据之后选定某些行数据,下面有个示例,需要的朋友可以参考下

比如load数据之后选定某些行数据。

this相当于当前的GridPanel, idxs相当于你要选中的行号

复制代码 代码如下:


this.store.on("load",function(store) {
this.getSelectionModel().selectRows(idxs);
//this.selectedRows = [];
},this);

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgpgxy.html