Antonio F.
Antonio F.

Reputation: 431

Editable and autocomplete combo box with JavaScript

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?

Upvotes: 2

Views: 12972

Answers (3)

texnic
texnic

Reputation: 4098

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.

Upvotes: 1

the_drow
the_drow

Reputation: 19181

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

Upvotes: 1

Xavi López
Xavi López

Reputation: 27880

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

Upvotes: 2

Related Questions