0
votes
1answer
272 views

Powershell..select drop down menu from web page

im trying to select a drop down menu on a website but im completely lost on how to do so. i googled the hell out of it but no luck on finding anything. this is what im trying to do.. connect to the ...
1
vote
2answers
86 views

Populate a dropdownlistfor with values

I'm a beginner in MVC and am trying to populate a DropDownListFor tag with values. Here's what I found out right now which helped me a bit to construct my code: ...
0
votes
1answer
163 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? ...
0
votes
2answers
628 views

Javascript Dropdown Menu - Refresh when the selection is changed

I am trying to set this up so that when a user changes the 'hier_start', the page is refreshed and the dropdown is preselected with the selection that was just made. <form name='categories' ...
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, ...
1
vote
1answer
666 views

Enable/Disable a 'DropDownListFor' on a checkbox selection

I am working show the drop down values on selection of a check box. But with the below code, all different items that are present in the drop down coming directly. Somehow the @Html.DropDownListFor ...
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
2answers
831 views

asp.net mvc dropdownlistfor Object reference not set to an instance of an object error

I am trying to create a drop down list using asp.net mvc. Model: public string Status { get; set; } public List<SelectListItem> StatusList { get; set; } public AddUser() { ...
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, ...
0
votes
1answer
296 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 ...
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
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 ...
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 ...
0
votes
1answer
466 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 ...
3
votes
3answers
3k views

ASP.NET MVC DropDownListFor does not honour SelectListItem.Selected

I am using DropDownListFor to render a dropdown list in a view. Somehow the rendered list does not select the SelectListItem with Selected set to true. In the controller action: var selectList = ...
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, "--", ...
0
votes
1answer
607 views

ASP.NET MVC 3 Dropdownlist Helper renders name incorrectly

I am using the HTML helper for Dropdownlist in the following manner: <%= Html.DropDownList("State", new SelectList(states, Model)) %> The control renders fine, with the state items as ...
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 ...
1
vote
2answers
2k views

DropDownListFor selection not working — again

Yeah, I know, this question's been asked/answered 34798796873.5 times. I looked through all 3 bajillion of them, and I still have the problem. What am I missing here? I tried several approaches and ...
1
vote
1answer
573 views

DropDownList not autosized properly within Jquery UI Accordion

My dropdownlist width is smaller than the longest text in the SelectList. When I click the dropdown, it resizes to fit properly. If I remove the .accordion from the div, the dropdowns all size ...
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 ...
4
votes
2answers
1k views

Saving Dropdown list selection with Entity Framework in ASP.NET MVC solution

I'm looking for advice on a decent pattern for dropdown list selection and persistence of the selection with POCO EF please. I have a list of IEnumerable<Country> in my view model where Country ...