0
votes
2answers
65 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
39 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
1answer
56 views

Create simple Html.DropDownList or DropDownListFor

I am trying to include a list of Clients in a drop down box. I am including this list in a form (the Html.BeginForm()) so that I can pass the selected value to my POST controller. I think I am missing ...
1
vote
1answer
68 views

What is the best way to create dropdownlists in MVC 4?

I want to know,What is a best way to create dropdownlists in MVC 4? With ViewBag or another approach?
0
votes
3answers
539 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
0answers
89 views

Having trouble making the helper class for DropDownList work properly

I've just started with ASP.NET MVC 4 and built the simplest app. I'm having trouble making it work properly. Specifically helper class for DropDownList. When I try and create new ticket new record is ...
0
votes
2answers
606 views

DropDownList not getting selected - MVC4

I have the DropDownList in view as below, @Html.DropDownListFor(model => model.RoleID, (IEnumerable<SelectListItem>)ViewBag.RoleID, new { @class = "dropdownlistCustom" }) ...
0
votes
2answers
319 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 ...
2
votes
1answer
133 views

Reject dropdown placeholder when validating in ASP.NET MVC

In my ASP.NET MVC4 model I have a required property: [Required(ErrorMessage = "Select a class")] public string ClassName { get; set; } This is bound to a drop-down list in the Razor view: ...
1
vote
2answers
598 views

Knockout Js Dropdown not loading with values from WebAPi Service

Knockout Js Dropdown not loading with values from WebAPi Service Code is as below, Please help me. This is the knock out js call for drop down <select data-bind="options: menus, optionsText: ...
0
votes
1answer
127 views

Move Html.DropDownListFor into EditorTemplate

Trying to create an editor template using a dropdownlist in MVC4. I can get the dropdownlistfor to work directly in the view as such: @Html.DropDownListFor(model => model.Item.OwnerId, new ...
1
vote
1answer
4k views

MVC4 Razor drop down list binding with foreing key

So as I wanted to have a deeper understanding. I added a little bit more of fucntionality to MSFT tutorial on MVC4 you can find here ...
0
votes
0answers
330 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
2answers
707 views

The model item passed into the dictionary is of type 'System.Collections.Generic.List`1[System.Int32]'

ASP.Net MVC 4 I am trying to populate a list of Countries (data from Country table in DB) in a dropdownlist. I get the following error: The model item passed into the dictionary is of type ...
0
votes
2answers
325 views

Populating multiple table data in multiple dropdownlists on one page in ASP.Net MVC4

Being a newbie, please excuse my trivial question. (ASP.Net MVC4) After reading lots of posts/tutorials I am still not sure about how to approach. What I am trying to do is have three Dropdownlists ...
0
votes
1answer
126 views

MVC Model Instantiation

I'm not grasping some conceptual basics with MVC models and I'm hoping for some helpful clarification. In my MVC 4 web app, I have a view model that builds an IEnumerable<SelectListItem> for ...
0
votes
1answer
1k views

ASP.NET MVC4 + Get drop down value after HttpPost submit

So I want to get a value of the dropdown (== id of the account) to insert a new transaction Here below you can find my View: <div id="content"> ...
0
votes
1answer
158 views

DropDownListFor not working with nested list

My DropDownListFor not bind selected item. This is correct model: public class DeliveryOrderModel { public BoxInfo Boxes { get; set; } public class BoxInfo { public long? ...
2
votes
1answer
712 views

ASP.NET MVC 4 DropDownListFor error: Null Values

I am a beginner programmer and having trouble with the @Html.DropDownListFor helper... I am using a General Repository and Unit of Work pattern based off of the tutorial here: ...
1
vote
1answer
629 views

Dropdown list in Webgrid

Can somebody help me how can I put a dropdownlist in my webgrid column. I need to bind my dropdown list to a list from Model. And need to select an item from the list for every corresonding record in ...
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 ...