如何在Ext JS搜索字段中执行搜索

时间:2016-07-29 05:42:57

标签: javascript extjs4

我的网页上有一个搜索文本字段,我想在文本字段中输入值时触发搜索。

enter image description here

我正在使用下面的代码段将值放入搜索文本框

var comp = Ext.getCmp(' AccountNumber'); comp.setValue(' 2048007162&#39);

设置值后,我想触发搜索。

1 个答案:

答案 0 :(得分:1)

On searchbox change event you have to load the store with search query 
Example
{
xtype: 'textfield',
text: 'Search',
emptyText: 'Search',
listeners: {
     'change' : function(field, value, oldvalue, eOpts) {
          this.store.load({params:{id: 1,search: value}});
     },
     scope:this,
}

您必须在后端获取参数搜索,并根据您必须编写查询。