以前grid重新加载数据,都是用store.load();后来发现翻到后面页去了,再查询,不跳到第一页。所以找到了loadPage方法。
onTpmSearch:function(button){ var conditions=button.up("form").getForm().getValues(); var store=button.up("tpmList").down("grid[name='tpmProjectGrid']").store; Ext.apply(store.proxy.extraParams, conditions);//传参数到后台 store.loadPage(1);//加载第一页 }