Editable and autocomplete combo box with JavaScript

12,698

Solution 1

If you aren't already using any framework that provides this component (i.e. YUI), this component might be useful to you: dhtmlxCombo

Solution 2

You can take a look at Dojo's ComboBox.
It has all the features you require and more.

Solution 3

I am searching for it myself. One of the solutions I've found is jQuery UI's autocomplete. Seems to be very flexible and well documented. See http://jqueryui.com/autocomplete/#combobox for example.

Share:
12,698
Antonio F.
Author by

Antonio F.

Updated on June 04, 2022

Comments

  • Antonio F.
    Antonio F. almost 2 years

    I need to make a combo box in my form to be editable and capable to search the input text through the values of the combo box (like autocomplete way).

    What's the simplest way to obtain this?