Categories | Question details Back To List | ||
Bug in dhtmlXCombo when using filtering mode I found a bug in dhtmlXCombo when using z.enableFilteringMode(true); The pull-down arrow image is not show. This is both in my code and your provided samples. When removing z.enableFilteringMode(true); the image pops up again. Is there a way to fix this? :) Answer posted on Nov 19, 2007 01:39 Actually latest version shows drop down image in any mode http://dhtmlx.com/docs/products/dhtmlxCombo/samples/filtering/combo_filter.html In initial version of dhtmlxCombo, image was hidden in case of filtering, you can comment next line in code ( or just update to latest codebase ) this.DOMelem_button.style.display=(this._filter?"none":""); // line 125 in dhtmlxcombo.js |