我想获得具有特定单词的记录,但这个单词可以出现在任何字段中。
例如:
{ firstName: 'Ed', lastName: 'Spencer'},
{ firstName: 'Spencer', lastName: 'Ed'}
如果记录如上所述,那么当我搜索Spencer时,应该返回两个记录。 Ext js在过滤器上应用过滤器。有没有办法独立应用商店过滤器。
答案 0 :(得分:0)
做这样的事情:
store.filterBy(function(rec, id) {
if (YOUR CONDITION CHECK ON REC)
return true; //the record will be shown
else
return false; //the record will be filtered out
});