Categories | Question details Back To List | ||
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 }); |