DHTMLX Combo

Hello, I have used DHTMLX combo in that i have faced one problem,After implement combo is working fine. but sometimes combo is hide due to cache. after clear cache this work fine. is any way to clear cache so user can use dhtmlx combo without clear cache manually first time? means any code to clear cache ? :question:

i used simple client side filtering.

comboObj.enableFilteringMode(true);

Hello,

but sometimes combo is hide due to cache. after clear cache this work fine.

Did you mean cache of combo options or html page cache ? The former can be solved by adding random parameter to the url:

combo.loadXML(url+"?rn="+(new Date()).valueOf());

If the issue relates html page cache, you can try to set the required meta tag to avoid caching.