Ext.grid.GridPanel
オブジェクトを作成してを呼び出すthis.getView().refresh(false)
と、 gridPanel.GridView を取得できますが、エラーは次のとおりです。
this.grid is undefined
GridView にはグリッドがありません。コードは次のとおりです。
Ext.extend(Erms.user.EventUserPanel, Ext.grid.GridPanel, { loadData : function() {
this.getStore().reload({ params : { start : 0, limit : 2 } });
this.getView().refresh(false);
}});