Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET Auto Complete DropDownList

is there any Control or Jquery Plugin exist for asp.net Auto Complete DropDownList? if yes please link a sample here. I don't want use asp.net ajax control toolkit

like image 582
Shahin Avatar asked Nov 20 '10 05:11

Shahin


2 Answers

I don't know if this is what you're looking for but there is a nice Facebook-like type-ahead list here:

https://github.com/emposha/FCBKcomplete

It is a jQuery plugin, and uses AJAX to call a web service to load the items for the list as you type, and implements some smart caching as well to save on web service calls. Like I said, might not be exactly what you're looking for, but it's worth a glance at least.

Also check out jQuery autocomplete.

http://jqueryui.com/demos/autocomplete/

like image 67
Brandon Montgomery Avatar answered Nov 20 '22 05:11

Brandon Montgomery


jQuery AutoComplete can work with DropDownList

http://jqueryui.com/demos/autocomplete/#combobox

like image 1
Homer Avatar answered Nov 20 '22 05:11

Homer