Ext GridPanel加载完数据后进行操作示例代码
发布时间:2016-12-30 来源:查字典编辑
摘要:比如load数据之后选定某些行数据。this相当于当前的GridPanel,idxs相当于你要选中的行号复制代码代码如下:this.stor...
比如load数据之后选定某些行数据。
this相当于当前的GridPanel, idxs相当于你要选中的行号
复制代码 代码如下:
this.store.on("load",function(store) {
this.getSelectionModel().selectRows(idxs);
//this.selectedRows = [];
},this);