我正在尝试根据用户在文本字段中搜索的内容搜索特定字段。例如:
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');
我想返回一个使用my textfield值的过滤搜索。这可以通过给它一个itemId来完成吗?
答案 0 :(得分:2)
使用itemId
获取对该字段的引用,然后使用getValue()
进行过滤:
var searchField = myPanel.down('#criteria_1');
store.filter('KBE_ID', searchField.getValue());