Ext使用条件分页传参

Ext使用过滤条件显示grid内容的时候,如果有多页数据,则要把条件参数传到后台

store.on("beforeload",function(){
    Ext.apply(store.proxy.extraParams, {paramName:paramValue});
});


你可能感兴趣的:(Ext使用条件分页传参)