Ext分页带查询参数

Ext4去掉了baseParam,换成了这种写法,
  store.on('beforeload',function(){
// ext4 baseParam解决办法
var params = this.getProxy().extraParams;
params = Ext.apply(params,{
      startTime:dateToStr(Ext.getCmp("startTime").getValue()),
      endTime:dateToStr(Ext.getCmp("endTime").getValue())
       });
    });
之前是这种写法 store.on('beforeload',function(){
     Ext.apply(this.baseParams,{  
       year:'2012-09-08'
      }); 
    });
纠结

你可能感兴趣的:(ext)