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

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 = ...
0
votes
1answer
190 views

can not add data from dropdown to table

I am using nhibernate and mvc3 in asp.net I'm trying to add data into table where my table schema is like this: public class HobbyMasters { [Key] public virtual int HobbyId { get; set; } ...
0
votes
2answers
524 views

Passing id of selected dropdown option to Controller

I am using mvc3 nhibernate and creating a search application... Here i am creating a dropdown list containing all Hobby names and on click of search button the selected option's id should go to post ...
0
votes
1answer
401 views

To store selected value from dropdown list in mvc3 nhibernate

I am using nhibernate and want to create a simple dropdown list here is senario: I have a product class consist of name, type of product, and its value along with id the Type of product is foreign key ...
0
votes
2answers
240 views

asp.net mvc3, why my dropdownlist is not selected?

I create my selectlist from enum. [Flags] public enum Age { New_Born = 1, Toddler = 2, Preschool = 4, Kindergarten = 8, Elementary_School = 16, Middle_School = 32, ...
-3
votes
1answer
258 views

Cascading dropdown with Static data

i need to develop two dropdown list in my MVC3 project, where first dropdown will be a db driven and based on the data selected on first dropdown my second dropdown should change. Second dropdown is ...
0
votes
1answer
860 views

How to generate a DropDownListFor with multiple columns

In a .cshtml razor view, This works: @Html.DropDownListFor( m => m.PersonId, //bound value new SelectList(Model.Persons, "PersonId", "FirstName" , 0), //list " -- Select A Person -- " ...
0
votes
1answer
655 views

MVC3 DropDownListFor Model is null on PostBack

I am using a DropDownListFor like this: @Html.DropDownListFor(model => model.SelectedOrganisationValue, new SelectList(Model.OrganisationList, "Value", "Text")) And I am also using: [Required] ...
0
votes
1answer
93 views

How to pass an Object using a DropDownListFor

I have a teacher rating system. When I got to create a new comment about a teacher, I have a dropdownlistfor() list of classes that are available to the student can choose from. I want that ...
3
votes
3answers
179 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
1answer
440 views

Selected value not being set for ASP.Net MVC 3 DropDownListFor

I have a parent view model bound to a view that contains an property which is a list of other view models. Here is the parent view model code: var timeAvailability = (from u in ...
0
votes
1answer
191 views

Using DropdownListFor ignoring the “selected” value I've set in the model

Here is the controller code: EfCategoriaRepository efCategoriaRepository = new EfCategoriaRepository(); model.Categoria= new List<SelectListItem>(); foreach (var categoria in ...
1
vote
1answer
171 views

Where does DropDownListFor get the model from?

You can create a dropdownlist using @Html.DropDownListFor(model => model.SelectedId, model.DropDownItems); but where does DropDownListFor get the value to pass into the model => ...
1
vote
2answers
1k views

Taking Null Value while Selecting in DropDownList in MVC 3

I am having the Controller as follows... public ActionResult Create() { ViewBag.Dept = (DbStudent.StudentDetails.Select(s => s.StudDept)).Distinct(); return View(); ...
1
vote
2answers
328 views

Populating a dropdownlist from a value type

This obviously is pretty basic question but I haven't found my way around this: I'm trying to create a dropdown list for an integer property of my Model, so I can populate the dropdown with a default ...
0
votes
1answer
294 views

IE9 bug with Html.DropDownListFor

Hello I need some help with a bug in Internet Explorer 9. I am currently developing some CRUD screens in ASP.NET 4 MVC 3 Razor. In a multiple screen I use the @Html.DropDowListFor to create easy links ...
0
votes
1answer
939 views

How to select an item from DropDownListFor list? (MVC3)

I'm populating a drop down list using this code (and it works fine): @Html.DropDownListFor(x => x.SelectedCountry, new SelectList(Model.Countries, "Value", "Text"), "Please Select a Country") ...
0
votes
2answers
345 views

MVC 3 DropDownListFor and the wrong value error

I have a problem with my code snippet inside the MVC 3 with Razor syntax. In my DB table (MySQL), I have a colum (FK) LanguageID [int]. Then, in that View, I want to assign to that column to the ...
3
votes
2answers
10k views

Selected value in asp.net MVC 4.0 dropdownlist

I am trying to make a dropdown list using "DropdownListFor" function and I want to have a value selected in it. I have searched a lot and found the similar kind of solution of having a SelectList ...
0
votes
1answer
692 views

Set default dropdown defalut value based on viewbag

I have a dropdown list that reloads the page when its selected value is changed. This works and renders as expected. The only problem is that the dropdown list goes back to the default value. How can ...
1
vote
1answer
967 views

Databinding error with DropDownListFor in ASP.NET MVC 3?

I have a database table called Genre with the following fields: Id (Seeded Primary Key) Name (Name of Genre - Romance, Western, etc...) I have a Model class called GenreDropDownModel which ...
0
votes
2answers
89 views

Set DropDownListFor

I have this in my model, the content is the full list of country : public IList<LookupCountry> LookupCountry { get; set; }; public int SelectedCountry { get; set; } The look like this public ...
0
votes
1answer
297 views

How can I bind a DropDownList to an Ajax form with both post and get support?

I have a registration form for registering personal attributes. I am using both included Ajax.BeginForm function and also JSON to serialize the form. This form is updating the attributes and also ...
3
votes
2answers
2k views

Creating DropDownListFor items in the view

I want to create a DropDownList with a binding for one of my model data, but i want the dropdown items to be built within the View and i do not want the items coming in the Model data or from my ...
1
vote
0answers
226 views

MVC 3 DropdownList for Entity Object Property

I have a Domain Entity for User and I'm trying to create a simple "update user page" in ASP.NET MVC 3. I am having trouble setting the user's Role using a @Html.DropDownListFor to select and commit ...
0
votes
2answers
304 views

Refreshing MVC DropDownListFor with jQuery

I'm using jQuery to re-populate a DropDownListFor using the following code: $('#Teste).change(function () { $.ajax({ type: 'GET', url: ...
0
votes
1answer
3k views

ASP.NET MVC 3 with Razor DropDownListFor change not firing

I've seen a lot of questions on here regarding DropDownList and DropDownListFor events not firing but no answers that solve my problem. I don't think I've overlooked anything so I'll post my own ...
0
votes
1answer
246 views

use Html.DropDownListFor() w/o using Model

I'm passing a Model into my view (.net mvc 3) that can't contain the information that I want to use to populate my drop down list. I've never used Html.DropDownListFor() but have always just used ...
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 ...
0
votes
2answers
604 views

MVC3 DropDownListFor selected value does not reset if I set the Id

I've read a lot of posts on here regarding the dropdown selected value issues (not showing etc etc...) but mine is the opposite problem. I want the drop down to always reset after the view is ...
1
vote
1answer
71 views

dropdownlist for following

var dropdown = (from role in db.aspnet_Users where role.aspnet_Roles.Any(a => a.RoleName == "supervisor") select new { ...
0
votes
2answers
642 views

Razor @Html.DropDownListFor submit & get the option value on the server

I am trying to submit when a dropdownlist changes by doing this @using (Html.BeginForm("testAction", "FishingTrip")) { @Html.DropDownListFor(x => x.Day, Model.Days, new { ...
-1
votes
2answers
472 views

HTML.DropDownListFor class assignment

Is it possible to assign my own class to the HTML.DropDownListFor() helper?
2
votes
1answer
1k views

Passing a selected value from a partial view to the main view's viewmodel

As ASP.Net MVC3 newbies we have an issue that would like assistance with. (Questions at the bottom of this thread too.) First of all I am not sure if the following is the best way to go about this ...
1
vote
1answer
1k views

Html.DropDownListFor does not bind boolean SelectList

I have this code the constructs a select list as a boolean response var responseList = new List<SelectListItem>(); responseList.Add(new SelectListItem { Text = "Going", Value = ...
0
votes
2answers
407 views

Dropdown list filled from repository

I have an MVC3 drop down list that come from this code on the controller. private SelectList progCodesList = new SelectList(new[] { "Description", "Requirements", "Development", "Testing", ...
0
votes
2answers
336 views

MVC3 Model property bound to Html.DropdownListfor not updated on selecting dropdown by Jquery

I have a MVC3 application with ASPX view engine. My page is having a dropdownlist created by Html.DropdownListFor(m=>m.EmpId,(selectlist)Model.EmpDetails). I update this dropdown on a situation ...
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 ...
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 ...
0
votes
2answers
1k views

MVC3 DropDownListFor SelectedItem not being selected

In my controller I have the following (code omitted for brevity): public ActionResult Edit(string id) { vw_user u = _respository.getProfile(id); var model = new ...
0
votes
2answers
2k views

MVC Guid Validation - C#

I have a strongly-typed view which has a DropDownListFor attribute on it. Each item in the dropdown list is represented by a GUID. What im after is a way to validate if a user selects an item from ...
1
vote
0answers
189 views

How to set the selected value of Html.DropDownListFor when the model property has value and select the optionLabel when property is null

I want my dropdown to automatically select the optionLabel if my model property is null. But also automatically select the value of my property if it has value. What is happening to me is that my ...
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 ...
0
votes
1answer
984 views

Model binding problem with DropDownListFor

@Html.DropDownListFor(model => model.Activity.ActivityType, new SelectList(Model.ActivityTypes, "ActivityTypeId", "Name") ) I've got the above dropdownlist in my view. On submission on my ...
0
votes
1answer
2k views

Html.BeginForm() does not submit if nothing is selected in a Html.Dropdownlist() helper with optional label

@using (Html.BeginForm("Boxing", "Company",FormMethod.Post)) { <div class="box"> <div> <div class="left"> <div class="topLabel"> ...
2
votes
1answer
714 views

DropDownListFor & Navigation Properties

I'm running into an issue trying to use @Html.DropDownListFor(). I have a model with a navigation property on it: public class Thing { ... public virtual Vendor Vendor { get; set; } } In the ...
1
vote
1answer
1k views

MVC3 DropDownlistFor SelectedValue

I have a really strange issue on one of my edit pages. The dropdown below never get's the selected value. @Html.DropDownListFor(model => model.Bodymaterial, ...
0
votes
1answer
447 views

DropdownList has validation error when EnableClientValidation = false

I have a problem where my view is reporting a input-validation-error on a dropdownlist. I get this error in Microsoft MVC 3 and do not have an Data annotations on my model. I have also disabled ...
0
votes
1answer
467 views

How can I use DropDownListFor() on a dynamic type?

I get the following error in the DropDownListFor() "An expression tree may not contain a dynamic operation" because the lambda uses a dynamic type. How can I set the selected option on the ...
0
votes
1answer
299 views

MVC 3 DropDownListFor ModelState.IsValid is False

In the view .cshtml page: @{var items = new SelectList(Model.Rooms, "RoomGUID", "FullName");} @Html.DropDownListFor(x => x.Request.Room, @items) In the ViewModel .cs page: public ...