Enter key functionality on DHTML Combo

Hi,

We are not able to enter key functionality on DHTMLX combo, Can you provide us solution, any link related to this issue asap.

Hi
If i understand you right, you need native input’s events. You can use it via getting input element from dhtmlxCombo the next way:

myInput = myCombo.getInput(); myInput.onkeydown=function(){myScript};

Thanks for replying to my solution, but we are created the control using the following way,

In Script,

var mycombo= new dhtmlXCombo(“combo”, “cmbname”, 186);
mycombo.enableFilteringMode(true, “combogetdata.ashx”, true);

Please provide the way to this handle enter key functionality.

You need the next:

mycombo.DOMelem_input