combo box

how to set focus on combo in onload event in body tag


Combo API doesn’t allow to do that. But there is an internal property DOMelem_input - combo input object.


You can try to use it to set focus after combo initialization:


var combo = new dhtmlXCombo(…);


combo.DOMelem_input.focus();