dhtmlXCombo - any way to use filtering but without auto-comp

I love the filtering, but I sometimes find it annoying that it always tries to autocomplete on me. Is there any way to turn off auto-complete when using the filtering mode?



Rgds,

Rene

You can update code of dhtmlxcombo.js, just locate and comment next lines of code ( lines 772-773 )

            if (text!=data[1]){
/
this need to be commented, to prevent auto-completing in input box
               this.setComboText(data[1]);
               dhtmlXRange(this.DOMelem_input,text.length+1,data[1].length);
/
            }