Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Rene Christensen on Nov 20, 2007 07:10
open dhtmlx forum
dhtmlXCombo - any way to use filtering but without auto-complete?

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
Answer posted on Nov 20, 2007 07:30
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);
*/
            }