0
votes
1answer
29 views

Add options to dropdownlist added by javascript MVC

How I can add options to a dropdown list added by javascript? I have the next view in a MVC application @Html.DropDownList("list1", new SelectList(new ListDictionary()), htmlAttributes: new {@class = ...
0
votes
0answers
25 views

Dropdown with list of checkboxes in MVC

I was looking to see if there's a way where I can create a drop down list, displaying items along with check boxes next to it. This needs to be done in MVC, so I really can't use any ASP components. ...
-1
votes
2answers
47 views

Dropdownlist in MVC3 [closed]

Model: public class Drive { public string DriveName {get; set;} } How to display list of drives to dropdownlist in MVC3? On selection of a particular drive, how to retrieve selected dropdownlist ...
0
votes
1answer
81 views

MVC3 Dropdown - Model State Error on HttpPost

I am getting the following error for my Dropdownlist on [HttpPost] Method. The values are binding correctly, that is not a problem. But there is an error in model state all the time. The error is: ...
0
votes
1answer
73 views

Using dropdownlist and actions in MVC3

I'm trying to build a table where you can see the current state of a person (which is loaded from a database) in MVC3. The user have an option to change and set the status, which is saved to the ...
0
votes
1answer
418 views

DropDown box in ASP .Net MVC 3 Razor Entity Framework

i am new to ASP .NET and Particularly in ASP .Net MVC3 Razor... i have created view for Clients and Executives in MVC3 Razor. What i did is 1st i created Model called Clients.cs namespace ...
0
votes
1answer
416 views

how to bind the dropdownlist using ajax

I need to bind the ddl values from another dropdownlist(ddl) result using ajax and mvc3 Related: how to get the result from controller in ajax json
1
vote
0answers
76 views

problems with dropdownlist

I am trying a query with multiple columns concatenated and displayed in a dorpdownlist. MODEL public partial class users      {          public users ()          {              <minuta_info> ...
0
votes
1answer
183 views

Populate a dropdownlist in MVC3 not working

I am learning MVC3 and I can't find a way that works to populate a dropdown list. Tried examples from StackOverFlow, not working. Tried from a project that I found on the web and that doesn't work. ...
0
votes
1answer
79 views

MVC3: Geting values of cloned objects

I have a drop down list with options from a model; and I want to add a similar drop down list when the user clicks on a button. My drop down list and button are defined as <div id="parent"> ...
0
votes
1answer
462 views

How to make list items in DropDownList to be colors instead of text in mvc 3

Suppose I have a ViewModel where there is a string field which contains name of the color. So in my DropDownList I want list items to be colors instead of mere text)) Can it be somehow done? Thanks in ...
1
vote
2answers
95 views

asp.net dropdownlist convert to MVC3 dropdownlist

I have an static dropdown list in asp.net like below: <asp:DropDownList runat="server" ID="ddlSource" Width="278px"> <asp:ListItem Value="NONE" Text="- Selct-" /> ...
0
votes
1answer
164 views

MVC: Binding Dropdownlist To Controller and getting Selected index in the controller

I have an MVC# drop down list with the values defined in a model. @Html.DropDownListFor(model => model.myModel, new SelectList(Model.List, "Value", "Text")) I want it to act like a button, ie, ...
1
vote
1answer
659 views

MVC3: Get Drop down menu selected value/text via Javascript

On MVC3, with a dropdownlist defined as @Html.dropDownList(m=>m.model, new SelectList(m.myList, "value", "text")) How can I get the selected value and/or text via javascript? I tried passing a ...
1
vote
1answer
500 views

MVC3 Set Drop down list Selected value

@Html.DropDownListFor(m => m.field, Model.fieldList, "Select") I have the code above to get the values of a drop down list from a database. Because the database does not have the select value, I ...
0
votes
2answers
214 views

Setting selected property in SelectList for each object in collection based on selected ID in ASP.NET MVC 3

Follow up question to : Populate a list property from delimited string The problem I'm having is the DropDown boxes in my Edit view are not retaining/selecting the the proper item based on the ...
2
votes
2answers
1k views

MVC3: Set Dropdown list Selected Value

I am using mvc3 and I have a drop down list in my view. @Html.DropDownListFor(m => m.State, new SelectList(Model.StateList, "Value", "Text")) Is there a way of setting the selected value in the ...
0
votes
3answers
263 views

MVC3 using Drop Down List model and other models in the same view

I am using this example to develop a dropdownlist. It works well until I make some changes in the way my model is called within my view. The dropdownlist model class is called dropdownModel. Because ...
0
votes
1answer
178 views

MVC3 Dropdown Menu Controller

I have a model for a drop down menu similar to this one. I am trying to create a controller for it. public ActionResult Index() { ViewBag.Message = "Welcome to ASP.NET MVC!"; ...
0
votes
1answer
355 views

Concatenate selected values from dynamic dropdowns using jquery

Question: How do I get the value from each dropdown and concatenate them to create a string of characters from those values? These dropdowns are dynamically generated so I cannot select them by ID ...
6
votes
1answer
75 views

Styling of selectlist items in mvc3

I'm in the process of altering some code that I didn't wrote, AND I'm rather new to Razor It is a select list of vehicles and the code looks like this: <select name="selectVehicle" ...
0
votes
0answers
158 views

using dropdownlist in webgrid mvc3

I am binding my webgrid Model : public List<SelectListItem> listItemsProducts = new List<SelectListItem>(); public int Quantity { get; set; } public decimal Rate { get; set; } public ...
1
vote
1answer
3k views

asp.net/MVC 3/razor/jquery/cascading dropdown list not working

I'm new to stackoverflow as well as to jquery/javascript. I've been searching all day for different ways to add cascading drop down lists to my current project and have yet to find a way that has ...
0
votes
1answer
166 views

WebGrid MVC3 Dropdownlist

I have a webgrid with columns product, quantity, rate, and gross. I have a dropdownlist which has the list of products. Now based on the selection of the product I need to get the rate for the ...
0
votes
1answer
257 views

MVC3 Drop Down List [duplicate]

Possible Duplicate: MVC3 Razor (Drop Down List) I've been getting "Object reference not set to an instance of an object.". Been trying to figure out this error for the past 12 hours. Hope ...
0
votes
0answers
38 views

Retrieving entire DropDownlist

How can i recover all my DropDownList options? I've tried a lot of different things, but none of them worked. I don't want just the selected value, but the entire options, with it's text and value. I ...
1
vote
3answers
109 views

Checking values in a drop down

I have a drop down list that's being generated by ASP.NET MVC3 razor syntax. <div id="list" style="display:none; float:left;">@Html.DropDownListFor(x => x.PromoType, ...
1
vote
1answer
195 views

JQuery .click, nor .on(“click”, …) working with ASP .NET and twitter-boostrap elements created using a function

I tried wording this question the best I could... I'm sorry if it wasn't clear but here is my issue. This is my .js file" $(function() { $(".dropup").on("click", function(e) { alert(''); }); ...
0
votes
1answer
216 views

Make DropDownList using SelectList in ViewModel

I've been trying to make a drop down list using the SelectList class. What I mean by that is NOT the following. public class MyViewModel { public int SelectedValue { get; set; } public ...
0
votes
1answer
596 views

How to insert a “ Please Select ” item into MVC dropdown list without it causing validation

Ok dokey, I have the following set up. Model public class SupplyType { [Key] public int SupplyTypeId { get; set; } public string SupplyTypeName { get; set; } } public class Supply { ...
0
votes
1answer
596 views

Populate Dropdown List with DB table item

I have a table with about 3 items. I wish to populate the Dropdown List using that table. But i have a condition that i want to show only 2 items in the Dropdown List. How can it be done?
0
votes
1answer
887 views

MVC3 cascade dropdown and Json object

I've implemented my cascading dropdown list with MVC3 almost exactly as explained in Easiest way to create a cascade dropdown in ASP.NET MVC 3 with C# My view had that <script ...
0
votes
0answers
1k views

Cascading dropdown mvc3, razor, entity framework 4.1

is there an easy way to create cascading dropdowns in mvc3??? what i have done by now is two dropdown, one for students and the next for exams. what i want to achieve is that if i select X student ...
2
votes
2answers
1k views

MVC3 DropDownList + JSON + selected issue

I have a very strange behaviour between my website (MVC3 + JQuery) and its mobile version (MVC3 + JQuery mobile) which are split in two distinct solutions. I am using the following code to change the ...
0
votes
2answers
1k views

Dynamically populate the drop-down using jQuery in ASP.Net MVC3

I have two models: public class ProfessorModels { public string FullName { get; set; } public int ID { get; set; } } and public class ClassModels { public int ID { get; set; } ...
0
votes
1answer
59 views

Setting a drop downlist to a specific value in MVC 3 Razor

Afternoon all. I have a drop down list in my view <div class="editor-label"> @Html.LabelFor(model => model.SiteTypeId, "SiteType") </div> ...
0
votes
3answers
935 views

Convert Dropdownlist item's value to int

I need the value of SelectListItem to be int. So I pull it of the database, convert it to string in the process and store to listitem's value. public class BookAdd { public BookAdd() { public Book ...
1
vote
1answer
652 views

issue in binding dropdown column in jqgrid

I use jqgrid along with MVC3 in razor view engine, in jqgrid i have a dropdown column, i load the drop down like... colModel: [{ name: 'Company', index: 'Company', width: 200, ...
1
vote
2answers
198 views

Set selected option of type model in dropdownlist with knockout

I'm trying to load the saved option from server side with knockout, please see below the general idea, I have the following classes in javascript: funcion Request() { this.Id = ...
0
votes
1answer
206 views

Select menu are not working/opening on a single tap event in the ipad in jquery mobile

I have created a jquery mobile application in jquery.mobile-1.1.0.min.js version where there are three select menus on a page each opens in new window using data-native-menu="false" and ...
0
votes
1answer
482 views

MVC3 dropdown list value no populating inside editor template

I have an editor template with a dropdown: @Html.DropDownListFor(m => m.AdmissionState, new List<SelectListItem>() { ...
0
votes
2answers
214 views

how to show more than one item with SelectList (it's a dropdown) , im using mvc3

this is my code: ViewBag.idprofesor = new SelectList(db.Profesor, "IDProfesor", "nombre"); this code generate a dropdown that only shows the name (nombre) of the teachers (profesor) in the ...
1
vote
1answer
653 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
1answer
331 views

mvc 3 dynamic Category Dropdown

Ok, I have read a bunch of articles, and I am still lost, so I figure I will put the question out here. I am trying to create a dynamic dropdown in my "posts" create view. I would like to pull the ...
2
votes
1answer
509 views

set both Default value and CSS Class of Html.DropdownList

I have in my controller: ViewBag.CityId = new SelectList(new CityRepository().GetAll().OrderBy(x => x.Name),"CityId", "Name", new Guid("74898AD1-73BB-41E1-B1E1-484EACAFA4C4")); And in My ...
0
votes
1answer
497 views

Change Selected = true in SelectedListItem in ASP.NET MVC3 View by condition

This is my Model: public class MyModel{ public string Name { get; set; } public string listType { get; set; } public string SelectedItem { get; set; } } I have a partial view: @model ...
0
votes
2answers
135 views

DB filled DropDownList in EditorTemplate

I have an import page with a dynamic number of transactions. For each transactions, I have several plain text data labels and one DropDownList (Categories). I'm trying to populate this Category ...
1
vote
2answers
3k views

MVC - html.dropdownlist - calling javascript or controller/method directly?

In my MVC application, I have a html.dropdownlist in my view. On selection changed - I want the value to be passed on to a method (that returns something like a list or a JsonResult) in the ...
0
votes
1answer
83 views

Display 2nd field based on the selection in the dropdownlist

I am having short names displayed in the dropdownlist, I want, on the selection of any value in the dropdownlist a text-box should display the corresponding FULL-NAME from another table. The short ...
0
votes
1answer
494 views

How to fill dropdownlist with an array based on another dropdownlist, using jquery in MVC

I have two dropdownlistfor, and the second of them should be filled with an array based on the value of the first dropdownlist I've tried to follow Darins Answer here but I have problem getting the ...

1 2 3 4 5