any way to use filtering but without auto-complete but wanna

dhtmlx.com/docs/products/kb/inde … yes&s=list



I tryed this. If i type in input field the autocomplete doest work and it is good, but i would like to get the selected element from combolist.



As yet getselected method has worked only with autocomplete, now autocomplete is disabled but i need getselected method.



Regards, MiB

If you typed not full text of option, then option is not really selected , it just highlighted in list, and there is no API call to get the currently selected option.
You can try to access value of currently highlighted option as
    combo._selOption.value

Tanks