Tagged Questions

A user interface control, similar to a list box, which allows the user to choose one value from a list.

learn more… | top users | synonyms

130
votes
6answers
99k views

jQuery get selected text from dropdownlist

How can I get an asp dropdownlist selected text in Jquery, not using selected value?
80
votes
8answers
101k 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
58
votes
3answers
56k views

How can I set the value of a DropDownList using jQuery?

As the question says, how do I set the value of a DropDownList control using jQuery?
55
votes
24answers
58k views

Dropdownlist width in IE

In IE, the dropdown-list takes the same width as the dropbox (i hope i am making sense) whereas in Firefox the dropdown-list's width varies according to the content. This basically means that i have ...
51
votes
8answers
203k views

How to get selected value of dropdownlist using JavaScript?

How to get the selected value from dropdownlist in ASP.NET using JavaScript? I have tried the methods below, but each of them only returns the selected index instead of the value: var as = ...
30
votes
6answers
38k views

Asp.net - Add blank item at top of dropdownlist

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 = ...
26
votes
9answers
16k views

Dropdownlist control with <optgroup>s for asp.net (webforms)?

Can anyone recommend a dropdownlist control for asp.net (3.5) that can render option groups? Thanks
25
votes
3answers
48k views

ASP.NET MVC 2 - Html.DropDownListFor confusion with ViewModel

I'm getting totally lost and confused on how to use the new strongly typed Html.DropDownListFor helper on ASP.NET MVC 2.0 R2 In the View I'm writting: <%= Html.DropDownListFor(m => ...
23
votes
4answers
30k views

Populating ASP.NET MVC DropDownList

OK, I've been Googling for hours and trying everything and can't get anything to work. I am learning MVC using Sharp Architecture and have generated some basic forms for creating Client objects. I ...
21
votes
6answers
12k views

How do I use jQuery to select all children except a select element

I have a div (let's say the id is "container") with many elements in it, including a select element. I'd like to select all everything in the div except the select. Things I've tried: $("#container ...
21
votes
4answers
14k 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 ...
17
votes
2answers
6k 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 ...
17
votes
3answers
4k views

Support for optgroup in dropdownlist .NET MVC?

Continuing on from this question programmatically creating a drop down list I would like my list to have several optgroup lists too. Is this currently possible? I know I need to pass a selectList to ...
13
votes
2answers
7k views

MVC2 EditorTemplate for DropDownList

I've spent the majority of the past week knee deep in the new templating functionality baked into MVC2. I had a hard time trying to get a DropDownList template working. The biggest problem I've been ...
13
votes
3answers
4k 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 ...
12
votes
6answers
17k 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? According to the following question: How do you submit a dropdownlist in asp.net mvc, from inside of an ...
12
votes
7answers
15k views

Can I open a dropdownlist using jQuery

For this dropdownlist in HTML: <select id="countries"> <option value="1">Country</option> </select> I would like to open the list (the same as left-clicking on it). Is this ...
11
votes
2answers
23k views

How to make a dropdownlist disabled on change event using JQUERY?

$(document).ready(function() { $('#<%=ddlContinents.ClientID %>').change(function() { var element = $(this); var totalLength = element.children().length; if ...
11
votes
17answers
24k 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 ...
10
votes
4answers
15k views

Populating child dropdownlists in JSP/Servlet

Suppose I am having three dropdownlist controls named dd1, dd2 and dd3. The value of each dropdownlist comes from database. dd3's value depends upon value of dd2 and dd2's value depends on value of ...
10
votes
7answers
79k views

ASP.NET 3.5 GridView - row editing - dynamic binding to a DropDownList

This is driving me crazy :-) I'm trying to get a ASP.NET 3.5 GridView to show a selected value as string when being displayed, and to show a DropDownList to allow me to pick a value from a given list ...
10
votes
3answers
8k views

Rails non-table drop down list

I need to have a drop down list in which the user selects the day of the week they want to come in every week. The values will never change right. It's just Sunday, Monday, ..., Saturday right? It ...
10
votes
6answers
12k views

Asp.Net, DropDownList, AutoPostBack and Google Chrome

I've a simple asp.net page (framework 3.5) and an UpdatePanel with a series of dropdownlist I want to populate asyncronously. All works fine in all major browsers (Opera, Safari, IE6, IE7, FF3), but ...
10
votes
4answers
15k 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 ...
9
votes
3answers
11k views

DropDownList setting selected item in asp.net MVC

I noticed what seems to me a bug in asp.net MVC or simply I am doing something wrong. I am currently using 1.0 so maybe this is something that will be addressed in the 2.0 release. But either way, ...
9
votes
5answers
4k views

Best way of implementing DropDownList in ASP.NET MVC 2?

I am trying to understand the best way of implementing a DropDownList in ASP.NET MVC 2 using the DropDownListFor helper. This is a multi-part question. First, what is the best way to pass the list ...
8
votes
2answers
2k views

Radiobuttons instead of dropdownlist in mvc 3 application?

I have a View where the model has a collection of items. Then I have an EditorFor template that takes care of creating a dropdownlist for the user to select one of a limited number of values for each ...
8
votes
1answer
5k views

Check if value is in select list with JQuery

How can I, using JQuery, check if a value belongs to dropdown list or not? Thanks in advance.
8
votes
1answer
12k views

jQuery to remove an option from drop down list, given option's text/value

I have a drop down list and would like to remove an option from it, given the text/value of that particular option. Is it possible using jQuery? Just like 'append' which adds an option to the drop ...
8
votes
7answers
6k views

make drop down list item unselectable

I have a dropdownlist which has several options for generating reports. Based on the type of account the user has certain options which should be visible but not selectable (as an incentive for them ...
8
votes
2answers
12k views

How to declare and iterate an array in XSLT?

My requirement is -using XSLT- to show a dropdown list with the US states and print 'selected' on one specific that is declared in the XML which will use my style sheet. I was thinking on declare an ...
7
votes
2answers
948 views

Optgroup drop-down support in MVC - Problems with Model Binding

I wonder if anyone can shed some light on this problem.. I've got an option group drop-down for selecting a person's ethnicity – however it’s not storing the value in the model. ViewModel ...
7
votes
4answers
769 views

How to get data for a dropdownlist into viewmodel when using AutoMapper/AutoMapViewResult

After reading ASP.NET MVC 2 in Action and watching Jimmy Bogard's presentation from MvcConf (both highly recommended!), I began to implement some of their ideas. One of the cool things they do, is ...
7
votes
4answers
4k views

How do you make a dropdown list that displays images to the user instead of text?

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 ...
7
votes
4answers
6k views

ListItems attributes in a DropDownList are lost on postback?

A coworker showed me this: He has a DropDownList and a button on a web page. Here's the code behind: protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { ...
7
votes
6answers
10k views

Dropdownlist AppendDataboundItems (first item to be blank)

I have a drop down list inside an update panel that is populated on postback from a sql data source. It has a parameter which is another control. I sometimes need multiple postbacks, but what happens ...
7
votes
5answers
11k 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 ...
7
votes
5answers
60k views

ASP.NET / C#: DropDownList SelectedIndexChanged in server control not firing

I'm creating a server control that basically binds two dropdown lists, one for country and one for state, and updates the state dropdown on the country's selectedindexchanged event. However, it's not ...
6
votes
3answers
427 views

HTML Select with disabled Option returns wrong selectedIndex in FireFox

I have a Select with a disabled Option wich is the default selected one: <select name="select" size="1"> <option>0</option> <option selected disabled>1</option> ...
6
votes
2answers
270 views

PHP, MySQL - Associating a checkbox with a dropdown

I'm having an issue with trying to add a "quantity" to a product that a person is ordering. I've got a Products table, an orders table, an order_item table (which is a many-to-many table that contains ...
6
votes
5answers
211 views

Thousands of items in multiple dropdown menus

A client has given me a task to do that I've not done before, and so I'm looking for the best way to do it. They have a form they want users to fill in, but for one field, they want an option of ...
6
votes
1answer
387 views

How to retain spaces in DropDownList - ASP.net MVC Razor views

I'm binding my model in the following way in the view: <%=Html.DropDownList("SelectedItem",new SelectList(Model.MyItems,"ItemId","ItemName")) %> Issue is my item text is a formatted text with ...
6
votes
4answers
277 views

How to use icons in a drop-down list?

I have researching this for a while but can't see how to do this. Basically I am trying to use icons in a drop-down list, e.g.: <form method="get" action="testdocs-db.php" name="search" ...
6
votes
3answers
229 views

ASP.NET MVC - Populate Commonly Used Dropdownlists

I was wondering what the best practice is when populating commonly used dropdownlists in ASP.NET MVC. For instance, I have a Country and State select which is used often in my application. It seems ...
6
votes
5answers
7k views

Flex - How to change open DropDownList height

Using FB4, I want to change the height of an open spark DropDownList. By default, it shows up to 6 items before scrolling. My dropdownlist contains 7 items, so I want to change the height of the open ...
6
votes
2answers
5k views

django model/modelForm - How to get dynamic choices in choiceField?

hi i'm experimenting with django and the builtin admin interface. I basically want to have a field that is a drop down in the admin UI. The drop down choices should be all the directories available ...
6
votes
7answers
10k views

Images in dropdown list

Hi I want to put image along with some data in asp.net drop down list box. Can somebody give me a sample code to achieve this functionality? country flag + country name --> in the same list item ...
6
votes
2answers
6k views

DropDownList in FormView binding

I want to bind dropdownlist to List<MyIem>, in code behind. <asp:DropDownList ID="listCategories" runat="server" Height="20px" CssClass="CategoryDropList" SelectedValue='<%# ...
6
votes
3answers
6k views

dropdownlist DataTextField composed from properties?

is there a way to make the datatextfield property of a dropdownlist in asp.net via c# composed of more than one property of an object? public class MyObject { public int Id { get; ...
5
votes
2answers
15k views

Asp.Net MVC3 - How create Dynamic DropDownList

I found many articles on this but still I don´t know how exactly to do this. I am trying to create my own blog engine, I have View for create article (I am using EF and Code first) and now I must fill ...

1 2 3 4 5 47