0
votes
2answers
84 views

Get value from Html.DropDownListFor without using Ajax or Jquery?

I am trying to pass a value from a dropdownlist to a controller method as a parameter. The following code DOES NOT WORK: @using (Html.BeginForm()) { <fieldset> ...
0
votes
1answer
47 views

Sending parameter from Html.DropDownList not completing redirect action?

I am struggling to get the value out of this: @Html.DropDownListFor(m => m.ClientId, new SelectList(Model.Clients, "ClientId", "Name")) @Html.ValidationMessageFor(model => ...
0
votes
3answers
578 views

ASP.NET MVC DropDownList value on HttpPost

I am following this Tutorial on ASP.NET MVC, specifically where it states that providing the String of "MovieType" to the Razor View as follows:@Html.DropDownList("MovieType") will provide the key to ...
0
votes
2answers
217 views

How to use dropdownlistfor in mvc3 razor with model

I want to use below property in my view with dropdownbox. How could I ? I have tried so many ways but Please help public IEnumerable<SelectListItem> Topic { get { return new[] ...
0
votes
2answers
353 views

ASP.NET MVC 4: Select a default value for a DropdowlistFor used on a Strongly type view

Maybe the question was already asked, but the answer that i found is not clear. I would like to select a Default Value of my Dropdown list. I have a list of Countries and based on the Region Code ...
0
votes
1answer
211 views

Generate a DropDownList from a Model in asp.net MVC3

I have a model like [Required] public string Username { get; set; } [Required] public string Password { get; set; } public IEnumerable<Connection> Connections { get; set; } ...
0
votes
1answer
92 views

CSS Select List that 'drops' to the right

I'm working in MVC4 and want to have a DropDownList that 'drops' to the right, instead of down. http://tympanus.net/Development/SimpleDropDownEffects/ The demo above shows the style that I'm looking ...
2
votes
1answer
524 views

MVC4 binding drop down list in a list (bug)

I have the below code in a view. (index.cshtml) Binding Problem The first drop down selects the correct value, based on the 'ChildItem' editor template. The second example using an inline drop ...
1
vote
1answer
201 views

Binding array to multiple DropDownListFor

I have a scenario where I want to pick 3 items out of a list of checkboxes. This works fine, but if the list of checkboxes gets long, the page looks unwieldy. So I wanted to change it to 3 dropdown ...
0
votes
1answer
109 views

Trouble parsing Razor DropdownListFor(m => ListDictionary[key]) upon HTTP POST

I have a view model property to hold a list of dropdown selection values like: private ListDictionary _claimDropdownValueCollection = new ListDictionary(); public ListDictionary ...
0
votes
0answers
331 views

Using DropDownListFor inside foreach loop ASP.NET MVC

I have trouble with list including selectlist. I'm populating a drop-down list inside a foreach loop and my select list comes populated; everything is ok up to here but, I'm storing the forms in ...
0
votes
1answer
203 views

MVC dropdownlistfor add null value

I am working in MVC I added a "select all" option to a DropDownListFor as such <tr><td valign="top">@Html.DropDownListFor(model => model.fk_Type, Model.ListType, "- Select All -", new ...
1
vote
1answer
731 views

Drop down list value returns to ---select— after page refresh

So in my application the user will select a name from the drop down list, click 'view' and the corresponding values will display on page. A hyperlink is then used to sort the list in ascending order. ...
1
vote
1answer
113 views

Using DropDownListFor with model

On my view I am using a list as my model and each list item is of type model, so it looks like this: @model IEnumerable<UserManager.Models.vw_UserManager_Model> and I am trying to loop ...
0
votes
3answers
1k views

.Net MVC 4 Dropdownlistfor SelectedItem (Not just selected value, but the selected text)

I have a for loop to generate IEnumerable list: public static IEnumerable<SelectListItem> loadData() { DataTable dt = load_from_database; List<SelectListItem> list = new ...
1
vote
0answers
149 views

Arithmetic opertions using Convert.toInt32 and toString problems in ASP.net

I'm trying to do this but it returns 1024 no matter what value x is. (Convert.ToInt32(x) * 1024).ToString() This line is embedded in some razor code: Html.DropDownListFor( m => ...
0
votes
0answers
47 views

My DropDownListFor presents error only post back

My dropDownListFor display data correctly but when I go to the HttpPost displays the error System.NullReferenceException. My viewModel: public class contaModel { public SelectList ...
1
vote
1answer
1k views

Getting Multiple Selected Values in Html.DropDownlistFor

@Html.DropDownListFor(m => m.branch, CommonMethod.getBranch("",Model.branch), "--Select--", new { @multiple = "multiple" }) @Html.DropDownListFor(m => m.division, ...
0
votes
2answers
116 views

How to create MVC3 DropDownListFor using only part of model

I'm creating a question/answer page that contains multiple object types (radio button, dropdown, check boxes). Id QuestionText AnswerId AnswerText ObjectType 1 text one 1 ...
0
votes
2answers
211 views

DropDownListFor doesn't display selected item

I'm trying to get the drop down list to have my item selected when there is an item, but it never does. I've Googled this and tried many different methods, but they all seem to use a ViewModel ...
0
votes
2answers
1k views

Multiple selction in Dropdownlist of asp.net MVC 3

Can we select multiple items from razor dropdownlist control. i.e for @Html.DropDownListFor(m=>m.Country, CountryList as SelectList,"--Select--")
0
votes
2answers
781 views

Appending list items to MVC DropDownList with jQuery

I am trying to dynamically append list items to the MVC DropDownListFor with jQuery. Unfortunately nothing happens when I run my code. I have used console.log to double check the html that's being ...
0
votes
2answers
195 views

Setting DropDownListFor CSS for options

I have the following that sets my dropdown to a ridiculous width: <div class="editor-field"> @Html.DropDownListFor(x => x.TypeId, new SelectList(Model.Type, "TypeId", "TypeName"), null, ...
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 ...
0
votes
0answers
153 views

Html.DropDownFor Binding Issue in IE8 Related to CSS

All, I'm having this strange issue in IE8 regarding binding model data to an Html.DropDownListFor element with a CSS width attribute applied. I have a parent dropdown list that when changed causes a ...
0
votes
2answers
2k views

MVC3 Razor SelectedValue in DropdownListFor

I've the following code for a DropDownListFor and is working ok @Html.DropDownListFor(Function(model) model.Habilitacoes, New SelectList(ViewBag.Habilitacoes, "KeyHL", "DescricaoHL"), New With ...
2
votes
1answer
138 views

Any way to not have to retroactively produce these data- attributes?

This Html.DropDownListFor helper should produce the data- attributes but fails to if there is any nesting. So this fails to produce them: @( Html.DropDownListFor( m => m.P[0].CId, new ...
1
vote
3answers
437 views

MVC3 dropdownlistfor

I would like to make a dropdown list, with the numbers 0-10. So users can rate something. At the moment, I have a label: @Html.LabelFor(model=> model.RATE) How can I modify this code that I will have ...
2
votes
2answers
4k views

Binding an string array to a DropDownList in MVC Razor

Do you know how easily I can bind the contents of a string array to a DropDownList in view for MVC Razor? public static string[] AgeRagne = new string[] { "Sun", "Mon", "Tues", "Wed" }; UPDATE: ...
1
vote
2answers
367 views

DropDownlistFor Creating New Entity with MVC3

I'm developing a small app in order to better understand how MVC3 anda Razor works. I'm using MVC3, all code was generated automatically (dbContext via T4, Controller via Add Controller, Databese from ...
1
vote
2answers
346 views

Html.DropDownListFor always returning value '0' regardless of whatever selected

I'm trying to bind an enum AgeRange using Html.DropDownListFor but regardless of whatever I'm choosing from View page, Controller is getting a value '0'. Can anyone help me to fix this issue? EDIT: ...
2
votes
1answer
2k views

DataBinding: 'System.Web.Mvc.SelectListItem' does not contain a property with the name 'CategoryTypeID'

I am using MVC. I want to pass the category data I entered from my view and passed to my Post/ Createcontroller, but it's not's letting me pass my categoryTypeID that I have selected from my ...
2
votes
6answers
2k views

How to combine two dataTextFields for SelectList Description in asp.net MVC 3 using @Html.DropDownListFor

I am returning some stored contacts to view for DropDownList and I am not able to include multiple dataTextFields on my SelectList. Currently I have: @Html.DropDownListFor(model => ...
0
votes
1answer
857 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
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 ...
0
votes
2answers
641 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 { ...
0
votes
2answers
406 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
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
1answer
980 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 ...
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
2answers
628 views

DropDownListFor without foreach in ASP.NET MVC 3

ViewCode public IList<Domain.Entity.Site> Sites { get; set; } Controller (GetAll return a IList) newViewModel.Sites = siteRepository.GetAll(); View @Html.DropDownListFor ? I need to ...
3
votes
1answer
4k views

Trouble getting DropDownListFor to work on EditorFor in MVC3

I've got a pretty simple problem that has a solution I'm not able to find. Given the following model: public class InfoViewModel { public SelectList States { get; set; } ...
3
votes
5answers
6k views

How to use MVC Html Helper .DropDownListFor<> with an Enum

In my MVC 3 Razor app, I have a Model with an enum.. Model Example: public class EmployeeModel { public enum Title { Accountant = 111, Sales = 222, Production = 333 } [Required] public ...
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, "--", ...
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 ...
0
votes
1answer
2k views

mvc3 razor dropdownlistfor causing update model to fail

I have a problem with the following code. Basically when I call updatemodel it fails but I dont get an inner exception. If i change the drop down to a text box it works. class: public class Member { ...