How to add (set) event handler (onselect) to dhtmlxCombo

Initial release of dhtmlxCombo has no support for events, they will be introduced in oncoming release.
If you need such functionality ASAP - please use attached file instead of original one, it provides next way to handle events

combo.onkeypressed=function(e){
    //occurs when key typed in combo
    //e - event object
}
combo.onchange=function(){
    //occurs then selected value changed
}


dhtmlXCombo.zip (7.01 KB)