在extjs中对网格进行远程过滤5

时间:2014-09-20 12:28:49

标签: extjs5

以下是我的商店。我正在使用" remoteFilter:true"在商店中,当我在extjs网格列中搜索数据时,该数据不会在该字段上设置为搜索远程。

Ext.define('ProjMgmtApp.store.Risk', {
  extend: 'Ext.data.Store',
  model: 'ProjMgmtApp.model.Risk',
  autoLoad: true,
  pageSize: utilsObj.scrollValue,
  remoteFilter:true,
  remoteSort:true,
  proxy: {
      type: 'ajax',
      url: utilsObj.wrapPKID('RiskList'),
      reader: {
        type: 'json',
        rootProperty: 'results',
        totalProperty: 'totalCount',
        successProperty: 'success'
      }
  }
});

我要过滤的网格列,它只适用于本地过滤器而不是远程过滤器,但我想要远程过滤器,请建议我,谢谢大家。

{
  header: "Description",
  dataIndex: 'riskDescription',
  width: 50,
  sortable: true,
  filter:{
    type: 'string'
  }
}

0 个答案:

没有答案