Categories | Question details Back To List | ||
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! Answer posted by Support on Sep 03, 2008 02:08 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; Answer posted by Mala on Sep 03, 2008 02:21 Many Thanks!!! It works great! |