Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by sirisha on Apr 08, 2009 01:47
open dhtmlx forum
Remove type ahead fature for autcomcomplete combo

Hello,
Please could any one help me to remove the type ahead feature for auctocomplete combo box?
How can i remove it.

Thanks
Sirisha
Answer posted by Alex (support) on Apr 08, 2009 05:51

Hello,

It can be done by modification of the dthmlxcombo.js

Please, try to locate and comment the following lines there:

  if (filter){

// start of modification

  /* var text=this.getComboText();
  if (text!=data[1]){
  this.setComboText(data[1]);
  dhtmlXRange(this.DOMelem_input,text.length+1,data[1].length);

  }*/

// end of modification

  }

Answer posted by sirisha on Apr 08, 2009 19:33
thanku so much, it worked.