Remote Filtering with ListFilter in ExtJS Grid Column Header
问题 I am using ListFilter plugin to filter results on a Grid panel. The column definition is. { header: 'Provider', filter: { type: 'list', store: Ext.getStore('MyApp.store.Provider'), dataIndex: 'provider_id', labelField: 'name' } } MyApp.store.Provider is created as Ext.create('Ext.data.Store', { storeId: 'MyApp.store.Provider', autoDestroy: true, autoLoad: {start: 0, limit: 50}, autoSync: true, model: 'MyApp.model.Provider', pageSize: 50, proxy: { type: 'ajax', api: { create: 'proxy/provider