9
votes
4answers
2k views
C# DropDownList with a Dictionary as DataSource
I want to set DataTextField and DataValueField of a Dropdownlist (languageList) using a Dictionary (list) of languageCod (en-gb) as key and language name (english) as the text to display.
Relevant …
7
votes
5answers
3k views
Dropdownlist control with <optgroup>s for asp.net?
Can anyone recommend a dropdownlist control for asp.net (3.5) that can render option groups? Thanks
6
votes
4answers
382 views
BlackBerry - dropdown control with images
The ObjectChoiceField field meets all my requirements but it is not pretty.
This is what I have:
String pets[] = {"Dog", "Cat", "Duck" };
ObjectChoiceField dd =
new ObjectChoiceField("My …
6
votes
3answers
8k views
How do I add options to a DropDownList using jQuery?
As the question says, how do I add a new option to a DropDownList using jQuery?
Thanks
5
votes
3answers
317 views
How to add item to the beginning of List<T>?
I want to add a "Select One" option to a drop down list bound to a List<T>.
Once I query for the List<T>, how do I add my initial Item, not part of the data source, as the FIRST element …
5
votes
13answers
5k views
Sorting a DropDownList? - C#, ASP.NET
I'm curious as to the best route (more looking towards simplicity, not speed or efficiency) to sort a DropDownList in C#/ASP.NET - I've looked at a few recommendations but they aren't clicking well …
5
votes
9answers
1k views
Drop Down List Issue
Hi all,
I’m having an issue where a drop down list in IE 6/7 is behaving as such:
You can see that the drop down width is not wide enough to display the whole text without expanding the overall …
4
votes
2answers
761 views
Add empty value to a DropDownList in ASP.net MVC
I'm building a data entry interface and have successfully bound the columns that have reference tables for their data using DropDownList so the user selects from the pre-configured values.
My problem …
4
votes
5answers
2k views
Dynamically created DropDownList loses ListItems on Postback
I have a page that contains some dynamically created controls (TextBox and DropDownList). When a postback occurs, the TextBoxes keep their values, but the DropDownLists lose their ListItems.
This is …
4
votes
4answers
3k views
How do you submit a dropdownlist in asp.net mvc from an Ajax form
How do you submit from a dropdownlist "onchange" event from inside of an ajax form?
From the following question here: …
4
votes
3answers
2k views
How do you submit a dropdownlist in asp.net mvc
<% using (Html.BeginForm() { %>
<%=Html.DropDownList("TopItemsList", ViewData["ListData"], new { onchange="[???]" })%>
<% } %>
In the above example, what value should you set …
4
votes
5answers
3k views
Asp.net - Add blank item at top of dropdownlist
Hi,
Why is the dropdown not showing my blank item first? Here is what I have
drpList.Items.Add(New ListItem("", ""))
With drpList
.DataSource = myController.GetList(userid)
.DataTextField = …
3
votes
6answers
105 views
Guarding against user-input in a dropdown list?
Should we guard against unanticipated user input from dropdown lists? Is it plausible to expect a user to somehow modify a dropdown list to contain values that weren't originally included?
How can …
3
votes
7answers
160 views
In ASP.NET, how can I force the format of dates in a DropDownList to “DD/MM/YYYY”?
I have to build a DropDownList with the dates of the last 7 days. I would like the DropDownList displays the date as "DD/MM/YYYY". So I created a list of dates:
DateTime date = DateTime.Now;
…
3
votes
9answers
424 views
Alternative to drop down list?
There are 30-35 items in a list and it is expected to grow further. What could be the best way to put it on the page? Dropdown list is the first control that comes to mind, but it could easily become …
