Combobox auto-complete

In my case, I want to implement multi select auto complete combobox using html, javascript.

Is there a body that knows how to realize it.

Which will look like the textbox specified on stackoverflow when adding multiple tags to any question.

-1


source to share


2 answers


If you're talking about multiple dropdown cells that are linked so that the selection in the first dropdown determines the capabilities in the next one, then ASP.NET Toolkit has a nice cascading dropdown example . This will of course come in handy if you are programming in ASP.NET. I would not recommend trying to reverse engineer the solution.



+1


source


What do you mean by autocomplete? If you want to dynamically populate the dropdown, you can simply use the normal HTML Select tag and use Ajax to retrieve the list of values ​​that will appear in the dropdown



0


source







All Articles