views:

299

answers:

3

This is what I'm talking about: http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ComboBox/ComboBox.aspx

basically I want to have a drop down list that can also have a manual text override... is there a jquery plugin that can do this easily? Or should I try and incorporate the toolkit one somehow ?

+1  A: 

http://plugins.jquery.com/project/jEC maybe?

Stobor
that was easy, thanks mate!
RodH257
A: 

you might want to check out this question: http://stackoverflow.com/questions/195270/professional-jquery-based-combobox-control

lomaxx
didn't come up in my suggested ones or in a search but thanks, flexbox looks fairly good from there
RodH257
+1  A: 

Check these plugins:

They all work extending the native SELECT HTML element, and since the ASP:DropDownList is rendered on the client as a select element, I think they will work without problems.

CMS
thanks CMS, some good ones there
RodH257
You're welcome @RodH257
CMS