Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to create multi select auto complete combobox?

In my case I want to implement a multi-select auto-complete combobox using HTML, JavaScript, and JSP.

Is there anybody who knows how to implement this?

This will be similar to the text field shown in StackOverflow while adding multiple tags to any question.

like image 587
user25778 Avatar asked Oct 27 '22 07:10

user25778


1 Answers

I would recommend an Ajax-driven auto-complete JavaScript combo-box, especially if you have a large set of data to query.

Otherwise, various javascript libraries (like Yahoo UI) do provide this kind of combo-box.

For instance, this combo-box based on ExtJS checkbox does offer a multi-select feature.

like image 81
VonC Avatar answered Nov 15 '22 11:11

VonC