gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 06:26:02 27 4
gpt4 key购买 nike

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

enter image description here

我使用下面的代码片段在搜索文本框中输入值

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

设置值后我想触发搜索。

最佳答案

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,
}

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

关于javascript - 如何在 Ext JS 搜索字段中执行搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38651264/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com