0
如何在多個字段上創建過濾器,哪些過濾器在服務器上過濾,而不在本地存儲中過濾?如何在多個字段上創建遠程過濾器?分機Js 5
到目前爲止,我只得到本地。
onFilter: function(field, newValue, oldValue, options){
var grid = Ext.getCmp('grid');
grid.store.clearFilter();
if (newValue) {
var matcher = new RegExp(Ext.String.escapeRegex(newValue), "i");
grid.store.filter({
filterFn: function(record) {
return matcher.test(record.get('id')) ||
matcher.test(record.get('names'));
}
});
}
}