dhtmlxCombo

how do you get an ofocus event to happen ?

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
    });