Returns am HTML select element for each property in the object that is represented by the specified expression using the specified list items and tag attributes.

learn more… | top users | synonyms

44
votes
3answers
106k views

Create a Dropdown List for MVC3 using Entity Framework (.edmx Model) & Razor Views && Insert A Database Record to Multiple Tables

After reading 100's of articles on here about how to create a DropDown List in MVC 3 with Razor Views, I could not find one that fit my case. So after Hours and Hours of searching for the answer I ...
17
votes
3answers
47k views

How to write a simple Html.DropDownListFor()?

I'm new in ASP.NET MVC 2 and I'd like to write a very simple dropdown list which gives static options. For example I'd like to provide choices between "Red", "Blue", and "Green".
14
votes
2answers
24k views

MVC3 DropDownListFor - a simple example?

I'm having trouble with DropDownListFor in my MVC3 app. I was able to use StackOverflow to figure out how to get them to appear on the View, but now I don't know how to capture the values in its ...
10
votes
5answers
30k views

asp.net mvc 3 pre-select Html.DropDownListFor not working in nerd dinner

Learning about dropdown lists, Im trying to add a RSVP create page for nerddinner as in Scott Gu's blog with a Html.DropDownListFor listing available dinners. I can get the dropdown list populated ...
2
votes
1answer
2k views

Understanding how DropDownListFor is working in MVC3

I'm new to MVC3 and have been working on a small site using EF and 'Code First'. I'm trying to do a few things in a view dealing with a drop down list and am wondering what the best way to go about ...
3
votes
3answers
3k views

MVC DropDownList SelectedValue not displaying correctly

I tried searching and didn't find anything that fixed my problem. I have a DropDownList on a Razor view that will not show the the item that I have marked as Selected in the SelectList. Here is the ...
0
votes
1answer
5k views

DropDownListFor - does not select “Selected” value

Another one of these questions regarding DropDownListFor not selecting the "Selected" value. Here is code: Model: public class CreateEditAccountModel { [Required] [Display(Name = ...
23
votes
3answers
16k views

ASP.NET MVC dropdown with a default empty option

Is there a way to include a default empty option (or with text) if there is no selected value for a dropdownlist?
3
votes
3answers
11k views

Bind Html.DropDownList with static items

I have to bind an Html.DropDownList with just two items statically. Text="Yes" Value="1" Text="No" Value="0" The important thing is that, I have to set the text and value fields. How can I do ...
2
votes
3answers
2k views

Html.DropDownListFor not behaving as expected ASP.net MVC

I am new to ASP.net MVC and I am having trouble getting dropdown lists to work correctly. I have a strongly typed view that is attempting to use a Html.DropDownListFor as follows: ...
5
votes
1answer
4k views

ASP.NET MVC: DropDownListFor doesn't select any option

I have this to populate a drop down list in an ASP.NET MVC view. <%= Html.DropDownListFor(model => model.Bikes, Model.Bikes.Select( x => new SelectListItem { Text ...
1
vote
2answers
220 views

Strange behavior in helper method DropDownListFor

I see a weird thing in DropDownListFor. This is a part of My View: 1:<dt> 2: @Html.LabelFor(model => model.MainModel.DefaultAreaId) 3:</dt> 4:<dd> 5: @Html.DropDownListFor(model ...
3
votes
3answers
178 views

ASP.NET MVC 3 - DropDownListFor Fails when URL Parameter Also Exists with Same Name as View Model Parameter

I am not sure if this is a bug with the DropDownListFor extension or what, but we had the following: http://mydomain.com/path/page?myparam=myvalue In my View Model I have the following: public ...
2
votes
3answers
268 views

MVC DropDownListFor and StringLength Attribute Not Playing Well together

My stringlength validation always fails on dropdownlists with a string value. Here is my model: [Required(ErrorMessage = "Required")] [StringLength(2, MinimumLength = 2)] [Display(Name = "Home ...
2
votes
4answers
2k views

Store extra value per item in drop down list

I have a list of items in a drop down list within a Razor view. In the database each item has 3 values associated with it - the database id, short name (for display), and long name (for passing to a ...
1
vote
1answer
2k views

MVC-3 DropdownList or DropdownListFor - Can't save values in controller POST

I searches for hours (or days) and didn't find a solution yet. I want to edit a customer with a DropdownListFor for the salutation with the right preselected value. I've got 3 entities (Database ...
1
vote
2answers
5k views

Binding to a DropDownList in MVC3

Previously, I was using this in my model public List<SelectListItem> StatusList { get; set; } public string Status { get; set; } and this in my view to bind to the Dropdownlist ...
1
vote
1answer
2k views

Problem with DropDownListFor SelectedItem

This has totally puzzled me. Here's my View: @Html.DropDownListFor(model => model.ScoreDescription, Model.RatingOptions, "--", ...
1
vote
3answers
3k views

Use dropdownlistfor with foreach in Asp.Net MVC View?

I have a View with a foreach loop for a list property of the model. Now, I want to be able to let the user set the value of each of the items in the list using a dropdownlist. But I'm not sure how to ...
0
votes
2answers
2k views

jquery ajax to bind dropdownlist MVC

I have a 2 dropdownlist , i have to bind the 2nd one based on the Id i got from first dropdown. in the first dropdown i added OnChange event. function onChange() { var ...
0
votes
1answer
229 views

Building a DropDownList in the Model?

I have a service layer that exposes a method, which returns me a List, called GetStates. public List<StateObject> GetStates() My State Object is just a custom object I have created: public ...
0
votes
1answer
133 views

Change label on change DropDownListFor value

I use a DropDownListFor and a label text on my page. <%=Html.DropDownListFor(x => x.MotiveClientType, new SelectList( Model.ClientMotives, ...
0
votes
3answers
2k views

How to dynamic bind html.DropDownList() in MVC

I have a dropdownlist and a textbox in my page,I want to change the dropdownlist with the textbox change. I use JQuery post like this: $("#txtBuildId").change(function() { var builddate = ...
0
votes
2answers
2k views

How to get Dropdownlist selected value

How to get dropdownList selected Item from CSHTML page. <div class="editor-field"> @Html.DropDownList("ROUTE_GROUP_ID", String.Empty) @Html.ValidationMessageFor(model ...