gridpanel动态重新加载columnModel与store

原文地址: http://www.blogjava.net/algz/articles/257409.html

 

其实很简单的,主要就是以下三项.
//重新绑定grid
this.grid.reconfigure(newStore, new Ext.grid.ColumnModel(cm1));
//重新绑定分页工具栏
this.pagingBar.bind(newStore);
//重新加载数据集
newStore.load({params:{start:0,limit:10}}); 

你可能感兴趣的:(html,.net,ext)