Hello. Sorry for my English.
$('#cc').combobox({
valueField: 'id',
textField: 'name',
mode: 'remote',
method: 'get'
});
$('#cc').combo('options').delay=604800000;
$('#cc').combobox('options').selectOnNavigation=false;
$('#cc').combobox('textbox').bind('keyup',function(e){
if (e.keyCode == 40){
var _combo=$(this).parent().prev();
_combo.combobox('reload','/Scripts/get_org.php?org_text='+_combo.combobox('getText'));
_combo.combobox('showPanel');
}
});
Enter text and press "alt" + "keydown" opens a drop-down list and the text in the edit is deleted. Then when you press the "down" there is no move through the panel, but called update (GET request) . Navigating the panel works by pressing the " down " . I do not correct or error in easyui?