I would like to be able to use the autocomplete feature of dhtmlxCombo without having it automatically fill in the value in the combo box with the first matching entry. I find that in this mode if the user types too fast what they are entering can get messed up because when the autocomplete fills in the combo box string it selects the relevant text, if they keep typing without noticing they can end up with a string which is a mixture of what they type and what has been auto filled in.
I need the user to be able to enter text in the combo box because they may be creating a new value that does not match any of the select list, but I would prefer it if the drop down box would list the matched values but not enter that information into the combo box, so the user would have the option of typing in a new value without any auto matching or selecting a value from the drop-down box. I can’t use straight filtering because I want to have the database lookup feature so that I don’t need to pre-load long lists of values and so that my script can do intelligent searches of the possible matches.
I guess what I am asking for is filtering with database lookup but no autocomplete. Is that possible?