我的网页上有一个搜索文本字段,我想在文本字段中输入值时触发搜索。
我正在使用下面的代码段将值放入搜索文本框
var comp = Ext.getCmp(' AccountNumber'); comp.setValue(' 2048007162&#39);
设置值后,我想触发搜索。
答案 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,
}
您必须在后端获取参数搜索,并根据您必须编写查询。