combo_select.gif (the pointing down arrow) url is incorrect

I have a drop down box (a.k.a combo box) with auto complete.

I set up as

var z = dhtmlXComboFromSelect("category"); z.enableFilteringMode(true) ;

I have the combo box with autocomplete working.

The problem is the pointing down arrow image is not found. The url of the image is

<img class="dhx_combo_img" src="combo_select.gif">

How do I fix that so that the combo_select.gif relatives to dhtmlx.js ?

Thank you.

Michael

Hello,

You may define pass to combo images by dhx_globalImgPath:

window.dhx_globalImgPath="…/…/codebase/imgs/";

For example dhtmlxCombo/samples/01_initialization/02_combo_init.html

thanks, it works.

Just to let you know that set dhx_globalImgPath before initialize combo box

window.dhx_globalImgPath="../../codebase/imgs/";