Tagged Questions
0
votes
1answer
44 views
Binding multiple selections of any type in MVC back to the model
I have a model which contains a List and each Schedule has a List inside it, so in my view I have:
@foreach (Schedule sched in Model.Schedules)
{
@Html.DropDownListFor(x => x.SelectedCustomer, ...
1
vote
1answer
195 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
2answers
585 views
MVC 3 @Html.DropDownListFor model binding fails
I am using VS 2010 with MVC 3 and EF 5. I am using a common pattern for dropdown lists that works correctly in all but one instance and I cannot see why this one is failing to select the correct entry ...
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
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 = ...
2
votes
2answers
223 views
What is a good way to edit two values with a single ASP .NET MVC dropdown?
A record is uniquely identified by its Kind and RecordId.
I have a set of records that I want to display as a dropdown, and on submitting I'd like to get SelectedKind and SelectedRecordId for ...