我正在尝试根据用户在文本字段中搜索的内容来搜索特定字段。例如:
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 来完成吗?