vote up 0 vote down star
1

Hi, I have an asp dropdownlist loaded with cities/countries. They are loaded directly in code

<asp:ListItem Value="MIA">Miami, Florida</asp:ListItem>

I would like to extend the control with Ajax in order to allow a user to start typing and show similar matching options from a dropdownlist below. Is this possible using this control and the hard coded values? Thanks!

flag
How many cities are in the list? Is it possible to do it all on the client side (i.e. always transmit the full list)? I would say client-side is reasonable if there are less than say 250. – Matthew Flaschen Apr 26 at 15:07

2 Answers

vote up 0 vote down

If you want to write your own control, I have written a blog about some of the gotchas when adding values to a DropDownList via javascript http://blog.runxc.com/post/2009/04/27/Using-jQuery-to-add-values-to-a-DropDownList-and-overcoming-ASPNET.aspx

link|flag
vote up 3 vote down

The behaviour you describe is usually achieved by extending the textbox control rather than dropdownlist.

Microsoft has a lot of useful tutorials on its asp.net website; try this one: http://www.asp.net/AJAX/AjaxControlToolkit/Samples/AutoComplete/AutoComplete.aspx for a start.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.