4

I have to create an editable combobox. The combobox contains name, age and city. The user can enter either name, age or city. The combobox has to filter all the list contain and should show relative list.

Eg:

Combobox contains  : xxx 23 ny, yyy 24 London, zzz 25 delhi, uuu 25 columbo.
Here user enter 25 : combo box has to show zzz and uuu rec
Patrick Hofman
  • 153,850
  • 22
  • 249
  • 325
usman
  • 1,947
  • 4
  • 19
  • 19

2 Answers2

3

What you want is JQuery's autocomplete (demo and updated docs) widget.

Check out the combo box example

Yanick Rochon
  • 51,409
  • 25
  • 133
  • 214
0

This plugin might help. It turns a regular <select> into a combobox, and when you type it filters the items that you see.

cambraca
  • 27,014
  • 16
  • 68
  • 99