0
votes
3answers
131 views

MVC 3 binding SelectList to dropdown list with JQuery

I have the following question regarding the MVC and Jquery. I would like to be able to call with JQuery an action serverside and then returned result bind to a drop down list. At this moment i do ...
0
votes
0answers
61 views

Cascade drop down list and mantaining select values after a post back

I need help / advice regarding the drop down lists which are cascaded, basically I created 3 drop down lists which cascade one by one, regarding what in the previous ddl is selected. The first one is ...
0
votes
1answer
111 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... ...
1
vote
1answer
60 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
0answers
321 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
2answers
257 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
183 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 ...
1
vote
1answer
141 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
2answers
247 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
0answers
137 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
45 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
307 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
987 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
1answer
222 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
2answers
272 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
0answers
174 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 ...
0
votes
3answers
418 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 ...
0
votes
2answers
228 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
96 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 ...
0
votes
2answers
192 views

MVC3 submit two model view with dropdownlistfor from database

I'm trying to querry List from database which will be shown in dropdownlistfor in view, and choosen result will be post. The problem is I'm using two models in view I tryed more options I'm lost ...
0
votes
0answers
127 views

Asp.Net MVC3 Razor List in dropdown list

I have list of items in table with 3 columns. This is asp.net MVC3 razor scaffholding list. I want to display this list as drop down items list. Is there any option to display list in dropdown? If ...
0
votes
2answers
503 views

Bind a simple integer array to a DropDownList in MVC3

My ViewModel is as follows: public class ClassificationCalculatorIndexViewModel { public bool PlacementYear { get; set; } public int[] Credit { get; set; } // List of Integers public int ...
0
votes
2answers
95 views

MVC3: Use javascript to clone HTML elements that use models

Is it possible to use the Javascript method clone() to clone an mvc html element like dropdown list that is defined using a model? I have a drop down list with options from a model; and I want to ...
1
vote
1answer
782 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. ...
0
votes
1answer
303 views

How to keep DropDownList values between a server call in ASP.NET MVC3

I have an ASP.NET MVC3 application. I have the following ViewModel: public class MyViewModel { public string Year { get; set; } public string Month {get; set; } public ...
1
vote
1answer
118 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
2answers
678 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 ...
0
votes
2answers
184 views

dropdownlistfor + jquery validation

I am creating an application in asp .net mvc3 c#. I create a dropdown list but I am unable to do a client side validation using Jquery. I have looked at numerous articles related to it and know that ...
0
votes
1answer
94 views

DropDownListFor and showing a SelectedValue

I have been banging my head for 2 days now with Html.DropDownListFor and MVC3. I have been successful in creating a drop down list and successfully updating the database based on it. I create a drop ...
-1
votes
1answer
56 views

In MVC3 I am trying to get my dropdownlistfor to have a Value of zero , instead of empty string for the starting “Please Select …”

How can I get the first Option Value to be zero instead of an empty string. So when the user goest to the form and doesnt select anything a Value would be passed like zero. I am new to MVC and have ...
1
vote
1answer
715 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 ...
0
votes
1answer
345 views

MVC dropdownlist , data not displaying when model is not Ienumerable

I am having a problem passing to the View a Model that contains the dropdown data and the model. With this code my page loads, but the dropdownlist contains "SYSTEM.WEB.MVC.SELECTLIST" when selected. ...
3
votes
2answers
472 views

Html.DropDownListFor value not selected on edit mode

I am succesfullly able to save value to database (title value) on insert , but when i render the same view in edit mode then title field must hold the selected value but in my case no value is ...
0
votes
1answer
179 views

How do I add more than one Dropdownlist in an ActionResult in MVC3

I want to add another dropdownlist. The below code works for one dropdown, but how would I add one for Categories? public ActionResult Create() { var ddl = new Users(); ...
0
votes
2answers
125 views

How to write @Html.DropDownListFor (and so) inside jQuiery $('#id').http('')?

I need to inject some UI element inside table getting by AJAX, I has an ID of element and I can write the value like this $('#s-@ViewData.Model.SomeID').html('<input type="submit" ...
1
vote
2answers
614 views

Binding a Generic List to a Dropdownlistfor in MVC3

I have a generic list method that returns a CategoryID and CategoryName. I have spent enough time researching and cant seem to put it together. I very new at MVC. Here is my DropdownList Method in a ...
2
votes
1answer
403 views

MVC3 Html.DropDownListFor with both static and dynamic values

I'd like to populate a Html.DropDownListFor with both static and dynamic values in my controller. I can't seem to figure out how to make this work. I've tried a few different approaches, but most ...
0
votes
0answers
137 views

MVC trying to populate my dropdownlist from my repository using ADO.net only

I need help on writing this. I am very new to MVC(2 weeks). I cant use EF, just plain ADO.net. I just need it to return a SelectList so I could populate a dropdownlist. public ...
1
vote
0answers
203 views

C# MVC3 Drop Down onchange firing post twice

I have a C#.Net MVC3 web app. I have a drop down list: @Html.DropDownList("AuthorNamesFilter", AuthorNamesFilter, new { onchange = "$('form').submit();" }) This submits to my [HttpPost] public ...
0
votes
3answers
236 views

Assigning a default value to a MVC3 @HtmlDropDownListFor

I have the following code for a user profile prefix: @Html.DropDownListFor(model => model.UserProfile.Profile.Prefix.ID, Model.PrefixList.Select(x => new SelectListItem { Text = x.Name, Value = ...
0
votes
1answer
236 views

ASP.Net MVC 3 Full Name In DropDownList

I am getting a bit confused with this and need a little help please. I am developing a ASP.Net MVC 3 Web application using Entity Framework 4.1. I have a DropDownList on one of my Razor Views, and I ...
0
votes
2answers
188 views

html.dropdownlistfor() troubles…getting null reference exceptions

I've tried to follow a few examples from here and a couple other resources to just create a very simple member in my viewmodel and display it as a dropdown list on my view with a dropdownlistfor() ...
2
votes
2answers
240 views

Deafult value loading for HTML.DropDownListFor

@Html.DropDownListFor(model => model.title, (SelectList)ViewBag.NoVList, new { id = "natureOfVisit", @class = "text white" }) How can I add a deafult value to this DropDownListFor. I mean when ...
0
votes
3answers
895 views

MVC3 DropDownListFor not select item (Mvc bug?)

I have simple test model: public class MyModel { public InnerModel InnerModel { get; set; } } public class InnerModel { public int Value { get; set; } } In ...
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
1answer
255 views

Building a DropDownList in the Model?

I have a service layer that exposes a method, which returns me a List, called GetStates. public List<StateObject> GetStates() My State Object is just a custom object I have created: public ...
0
votes
1answer
213 views

How to implement extension methods in C#?

I've found a topic in Here which is about how you could create a drop-down list from an enum in MVC. Here's the answer in that topic: Martin Faartoft says: I rolled Rune's answer into an ...
1
vote
2answers
467 views

implementing dropdownlist in asp.net mvc 3

I am teaching myself asp .net mvc3. I have researched a lot but the more I read the more confused I become. I want to create a page where users can register their property for sale or rent. I have ...
1
vote
1answer
586 views

How to get the selected value of Html.DropDownListFor in aspx engine?

In Html (which I did not use) it's <select> <option value="B">Bubblegum</option> </select> In (from controller) Aspx it's [HttpGet] public ActionResult ViewMethod() { ...
0
votes
1answer
139 views

DropDownListFor in MVC3 Aspx Engine

I am using the aspx view engine. I made it with SelectList and Html.DropDownList but populating should come from the model, not the controller and that I need to get the value of the selected item, so ...

1 2 3