0

我正在尝试根据用户在文本字段中搜索的内容来搜索特定字段。例如:

items: [ 
            { xtype: 'panel', padding: 5, height: 500, width: '35%',
                    items: [
                        { xtype: 'textfield', padding: 5, region: 'west', fieldLabel: 'Criteria 1', itemId: 'criteria_1'  }, ...

这是我的视图类的代码:

store.filter('KBE_ID', '#criteria_1');

我想返回一个使用我的文本字段值的过滤搜索。这可以通过给它一个 itemId 来完成吗?

4

1 回答 1

2

使用 获取对该字段的引用itemId,然后使用 进行过滤getValue()

var searchField = myPanel.down('#criteria_1');
store.filter('KBE_ID', searchField.getValue());
于 2013-07-29T19:20:03.763 回答