Skip to main content
Filter by
Sorted by
Tagged with
36 votes
23 answers
151k views

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 ...
scrot's user avatar
  • 1,657
1 vote
2 answers
575 views

I'm trying to design a form which contains a dropdown box containing a list of grocery item choices. What criteria should I look at when trying to decide on whether to use a java enum or a lookup ...
Kevin's user avatar
  • 956
5 votes
9 answers
4k views

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 drop down list....
Brian Liang's user avatar
  • 7,784
1 vote
3 answers
13k views

To Clarify to all this problem absolutely does not stem from rebinding of the controls and the value does not remain the initial value after binding. I have a DropDownList on an aspx page which is ...
YonahW's user avatar
  • 16.8k
2 votes
2 answers
884 views

We have a series of drop down controls that determine the sort order of columns. The problem we are having is when the user selects a column as the 2nd column the other dropdown lists need to have ...
Craig's user avatar
  • 12.1k
2 votes
1 answer
675 views

I have a drop down list in a GridView. The data inside the drop down list has variable length but the drop down list is of a fixed size. How can a tooltip be displayed over each item without selecting ...
Codeslayer's user avatar
  • 3,389
10 votes
4 answers
59k views

I have a this aspx-code: (sample) <asp:DropDownList runat="server" ID="ddList1"></asp:DropDownList> With this codebehind: List<System.Web.UI.WebControls.ListItem> colors = new ...
Espo's user avatar
  • 42.1k
10 votes
3 answers
47k views

How come this doesn't work (operating on an empty select list <select id="requestTypes"></select> $(function() { $.getJSON("/RequestX/GetRequestTypes/", showRequestTypes); } ...
Codewerks's user avatar
  • 5,982
8 votes
7 answers
81k views

I just want an ASP.NET DropDownList with no selected item. Setting SelectedIndex to -1 is of no avail, so far. I am using Framework 3.5 with AJAX, i.e. this DropDownList is within an UpdatePanel. Here ...
user avatar
3 votes
8 answers
30k views

I have a dropdownlist with the autopostback set to true. I want the user to confirm if they really want to change the value, which on post back fires a server side event (selectedindexchanged). I ...
4 votes
4 answers
14k views

I am wanting to write some jQuery code that converts a HTML <select> <option> Blah </option> </select> combo box into something (probably a div) where selecting an item ...
Matt Mitchell's user avatar
8 votes
6 answers
24k views

I have the following HTML (note the CSS making the background black and text white) <html> <select id="opts" style="background-color: black; color: white;"> <option>first</...
Orion Edwards's user avatar

1
435 436 437 438
439