Check documentation for the latest version of dhtmlxSuite onKeyPressed DHTMLX Docs

onKeyPressed

fires right after the key is pressed inside of the combo

void onKeyPressed(type keyCode);
keyCodetypekeyCode of the pressed key

Example

myCombo.attachEvent("onKeyPressed", function(keyCode){
    //your code here
 });

Back to top