如何在extjs中使用两个字段过滤商店?

时间:2013-03-07 10:16:00

标签: php extjs filter store

我在extjs中创建了3个名为chapter,subject和standard的商店。 在章节商店我有字段subjectid和stanrdid现在我想根据主题和标准中选择的值过滤我的章节商店。

我能够从任何一个过滤器中过滤章节,但不能从两个ID中过滤记录。

1 个答案:

答案 0 :(得分:1)

基本过滤器示例如下所示。请参阅documentation。您也可以以类似的方式尝试Store.filterBy()方法。

filters: [
    function(item) {
        if (item.subject == selectedSubject && item.standard == selectedStandard){
          return true;
        }

        return false;
    }
]