是否有任何示例方式告诉Ext.NET组合框在用户命中输入时显示自动完成的可用值 I really like advanced search sample of Ext.net combo box sample .在我的自定义中,我从SQL进行数据存储,并且查询搜索是非常重要的爱,尝试避免自动触发结果集。 我的想法是允许用户键入查询字符串并按Enter键或任何热键,然后执行从sql获取数据的逻辑,并允许用户选择显示网格中的可用项目?
我的环境是.net4,ASP.NET,WebForms,Ext.Net V2
答案 0 :(得分:0)
Our colleges from Ext.Net helped me to solve problem
<ext:ComboBox
runat="server"
DisplayField="Common"
ValueField="Common"
TypeAhead="false"
Width="570"
PageSize="10"
HideBaseTrigger="true"
MinChars="10000"
TriggerAction="Query">
...
<Listeners>
<SpecialKey Handler="
if (e.getKey() == e.ENTER) {
this.doQuery(this.getValue(), true);
}"></SpecialKey>
</Listeners>
</ext:ComboBox>