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
22 views

how to Bind dropdownList using Entity Framework in MVC 3

i want to show a dropdownList on a page using Entity Framework in my MVC app, but i am just stuck here to do this using using HTML Helper. so if anyone having knowledge of entity framework, help me... ...
0
votes
0answers
25 views

Should the dropdowns be filled in Get and Post?

I have a question regarding the DropDown in MVC3, as I'm new with it, and couldn't find the correct answer to it. In my model i have the following: [Required] [Display(Name = "Country")] ...
0
votes
1answer
28 views

Static list of data for dropdown list MVC

I want to have a static list of data in a model that can be used in a viewmodel and dropdown on a view. I want to be able to use it in this way in my controller: MaintenanceTypeList = new ...
0
votes
1answer
20 views

Selected value not working for SelectList

I found many questions and answers related to this issue but nothing worked for me I am creating a dropdown list like this @Html.DropDownListFor(m => m.SchoolYears, new ...
-1
votes
0answers
46 views

How can I make a textbox appear if a specific dropdown list item is selected in MVC 4?

I've got a form on my MVC 4 application. There are two dropdown lists on the form, and if "other" is the selected item, I want a text box to appear next to the dropdown list so that the user can type ...
0
votes
0answers
7 views

Get Dropdownlist id through formcollection. Not just the string value

Kind of new to this... Tried to find answer... Didnt find... Problem: I want the id of the selecteditem from the formcollection. The format is right in the table and the stored procedure... The ...
0
votes
2answers
77 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
41 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
59 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
37 views

Specify default value for ASP MVC 3 DropDownListFor

I've done this a hundred times but not sure what is going on here. I have a DropDownListFor that I populate in the controller like so var mktsegments = from p in db.ChannelMarketSegment ...
0
votes
1answer
41 views

Filter my @html.dropdownlistfor

Im working with a project and i need to filter my second dropdownlistfor based on my first dropdownlistfor value. Its simple to understand but hard to code it since i dont know jquery or javascript ...
0
votes
2answers
85 views

ASP.NET MVC Dropdown Selected Item

I have a DropDownListFor that is on my Index page and one in my Create page. Both dropdownlists serve the same purpose. What I want is when the user selects an item in the Index dropdownlist in the ...
3
votes
1answer
39 views

MVC DropDownListFor getting 2 names

Hi I am developing a banking system for a school assignment. Can you pass 2 Names in a dropdownlist ex: This is the model public TransferModel(int bankId, int userid) { myAccount = new ...
1
vote
1answer
75 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
0answers
76 views

Why does using the HTML helper for dropdown list prevent objects in the list from being properly accessed?

I am trying to do what I saw in this post: How to bind list of items with in dropdownlist using knockout.js and this fiddler: http://jsfiddle.net/JGGaA/ But everytime I try to get the drop down ...
0
votes
3answers
78 views

Jquery changing Selected value in MVC dropdown

I have been searching the internet and reading a lot of different ways to do this, but for some reason, none of them are working for me. There must be something I am missing here. What I am trying to ...
0
votes
2answers
54 views

create many DropDownListFor in foreach-loop

I want to create DropDownLists dynamically out of a List, which supplies the SelectList and a field where to save the selection. public class ViewModel { public List<Material_Select> ...
0
votes
0answers
273 views

passing dropdownlist selected value to controller through html.actionlink

I want to pass some values from model and dropdownlist selected value/item into controller through Html.ActionLink method, but can't find any suitable way. I am giving my code below - View: @using ...
0
votes
1answer
138 views

Filter items in listview using the value selected on dropdown list

Im newbie in asp.NET and i want to show a list of products in a listview depending on the value selected in a dropdown list (product category). I've been searching but nothing helps me! Thanks in ...
0
votes
2answers
237 views

DropDownList with Enum Kendo UI

I'm working on updating an application to use Kendo UI and have run into an issue with binding to an Enum with the DropDownList. The two issues I am having is 1) the value does not contain the Enum ...
0
votes
2answers
202 views

DropDownListFor on Edit page passing null value to controller on POSTBACK

I have an ASP MVC3 project that's using a partial view in the edit page. It loads the proper values into the DropDownListFor, however on the POST BACK the items are suddenly null. The view uses a ...
0
votes
1answer
147 views

ASP MVC3 - set drop down list for multiple items

On the edit page of my ASP MVC3 site, there is a portion of the code that deals with a dynamic number of agents attached to each model item. The code below is used to create the exact amount of table ...
0
votes
3answers
556 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 ...
1
vote
1answer
113 views

MVC populate dropdown from foreign key

I have been struggling with this for several days. I need to populate a dropdownlistfor with genres. My MovieRepository to grab the genres: public IQueryable<Movies> MoviesAndGenres { ...
0
votes
0answers
90 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
3answers
141 views

Passing Values from the SelectList Items Using ViewModel

I'd like to get the values of the selected items in dropdownlists. I am saving the files into the database with the following code: public ActionResult ...
0
votes
1answer
71 views

Html DropDownListFor issue

I have a problem with my DropDownListFor, I want a DropDownlist with 1,2,3,4,5 etc. on my View. In my model class: public class PageModel { [DisplayName("Quantity")] public int Quantity { ...
0
votes
1answer
45 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, ...
0
votes
2answers
208 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
621 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
0answers
116 views

Android Stock browser doesn't fire .change() for the first time

New version of Android stock browser (>= 4.1) doesn't fire .change() event for dropdown. I am rendering dropdown from asp.net mvc3 and, the dropdown has two onchange function associated to it. They ...
0
votes
0answers
38 views

how to put value and get value in DropDownListFor

I want to create a DropDownListFor in MVC, I have 2 option: "Active", "non-Active" and 2 value: "true", "false". How can I put my value in option and how to get these value in my controller View: ...
1
vote
2answers
260 views

how to bind the @html.dropdownlist name with id in mvc using javscript formate

I need to bind the @html.dropdownlist in mvc using JavaScript format with name and id . I try but not bind in the JavaScript side its not pass the value in client side. My list value format image is ...
0
votes
0answers
788 views

Html.DropDownListFor() set default selected value MVC3

I want to set the default selected value in DropDownListFor when the element is created Data model: public class CascadingDropDownModel { public int? PreviousFirstListId { get; set; } public ...
0
votes
2answers
337 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
267 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 ...
0
votes
1answer
217 views

SelectList default value

I have a drop down list in my project, with this code providing the lists values CrawlIntervalList = new SelectList(new[] {1,2,3,4,5,6,7,8,9,10}, 2); i am trying to set a default value of 2. Am i ...
0
votes
1answer
202 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
0answers
14 views

Editing data through drop down list

When I open my edit form for editing data, the text boxes will access the data but drop down lists are empty. I want to access data from mysql through drop down combo for editing purpose like the ...
0
votes
2answers
244 views

ASP.net MVC3 Select Foreign Key in Veiw using DropDownList

First off, sorry for brinning up, yet again, a topic that has been coverd many times before on this site - As much as I try, I just can't get my code to work. I have the following model classes: ...
0
votes
1answer
90 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
512 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 ...
0
votes
0answers
151 views

DropDownListFor for complex type binding/postback data

I'm making a game database and i'm stucked with using @HtmlDropDownFor with the gamecategory which is a complex type on the game object. Game class: public class Game { [Required] public int ...
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: ...
2
votes
1answer
134 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: ...
0
votes
1answer
37 views

DropDownListFor not appearing in view

This is a part of my controller: // GET public ActionResult Create() { var query = from f in db.Stages select f; var sItems = new SelectList(query, ...
0
votes
3answers
367 views

Telerik ASP.NET MVC dropdownlist multiselect supporting

I use Telerik ASP.NET MVC component. I need to implement multiselect functionality on dropdownlist but Telerik dropdownlist component doesnt support multiselect. Is there any way or how to implement ...
1
vote
1answer
196 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
177 views

How to bind the model value to @html.DropDownlist

I'm working in ASP.Net MVC3. I need to Bind my model value in a @Html.DropDownlist. I have populated my model with the list of items. How can I bind my model with MVC DropDownList?
0
votes
0answers
91 views

Several questions regarding dropdownlist, selecting value, passing viewmodels

I'm trying to create a form(will probably be several steps) where users add some information with text inputs, dropdownlists, radio buttons etc. The information is to be sent to a service. The user ...

1 2 3 4 5 6