Combobox - click in textfield

Hi … my question:



by clicking in the textfield of the combobox the complete list entries pull down. Can it be possible that the list only pulls down

by clicking the arrow on the right side and if I type any letter or word in the textfield (autocomplete), but not when I click in the empty field.



Many thanks!

Can be done only by code modification.
dhtmlxcombo.js, line 486

this.DOMelem.onclick = this._toggleSelect;

can be replaced with

this.DOMelem_button.combo = this;
this.DOMelem_button.onclick = this._toggleSelect;

Many Thanks!!! It works great!