我正在尝试制作一个实时搜索组合框,除了一个小细节外,一切都很好。当用户通过组合框按下向下键和向上键时,我想调用搜索方法。这确实触发了一个选择事件,但派克没有选择。当我用鼠标或按回车选择组合框项目时,选择事件确实得到了选择。我想在导航框时使用通过向下键和向上键选择的值启动查询。
组合码
searchField = new Ext.form.ComboBox({
id:'searchField',
store: queryCacheStore,
pageSize:0,
width: 780,
triggerAction:'all',
typeAhead:false,
mode:'remote',
minChars:2,
forceSelection:false,
hideTrigger:true,
enableKeyEvents:true,
queryDelay:200,
queryMode:'remote',
queryParam:'query',
queryCaching:false,
displayField:'query',
autoSelect:false,
listConfig:{
loadingText: 'Searching...',
// Custom rendering template for each item
getInnerTpl: function() {
return '<div class="search-item">' +
'{query}' +
'</div>';
}
},
listeners: {
specialkey:function (field, e) {
if (e.getKey() == e.UP || e.getKey() == e.DOWN) {
}
},
select:function (combo, selection) {
var post = selection[0];
searchField.setValue(post.get('query'));
requestAccessList.runSearch();
},
focus:function (combo, event, opts) {
combo.store.proxy.extraParams = {
'lcm':true,
'type':RequestAccess.OBJECT_TYPE
}
}
}
});
所以当
select:function (combo, selection) {
使用向下箭头键或向上箭头键调用,然后选择为空。当使用回车键或鼠标单击调用它时,它具有突出显示的组合框选择。所以问题是如何从箭头键事件中获取组合框的值?