How to make focus in dhtmlx combo . the focus() method is not working in dhtmlxcombo
There is no built-in functionality to set focus in combo.
The combo contains two containers: a container with html input and a container with options.
The combo input can be got by DOMelem_input internal property. So, you can try to set focus to it.
var input = dhxCombo. DOMelem_input;
That’s exactly what I do:
.DOMelem_input.focus() and it works fine.
I did think it should be part of the combo API as it’s quite often you want to do this.