Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by mkeery on Apr 01, 2008 12:01
open dhtmlx forum
dhtmlxCombo

how do you get an ofocus event to happen ?
Answer posted by Support on Apr 02, 2008 00:46
There is no such event as onFocus in dhtmlxcombo, but you can catch focus of input element directly by
    var combo=new ....
    dhtmlxEvent(combo.DOMelem_input,"focus",function(e){
       //any custom code here
    });