Tagged Questions
0
votes
1answer
26 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
1answer
29 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
50 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
2answers
78 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
42 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
60 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
39 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
49 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
89 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 ...
0
votes
0answers
78 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
81 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
2answers
245 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
209 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
150 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
569 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 ...
0
votes
3answers
146 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
644 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
1answer
91 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
518 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 ...
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
135 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
369 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
200 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
0answers
92 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
1answer
102 views
HtmlHelper DropDownListFor error,
I'm trying to learn MVC 4, and have had about a year of ASP.NEt development experience and about a year and a half of C# experience (both on my own time, not with an employer). Now that I'm employed, ...
0
votes
1answer
92 views
ASP.NET MVC - Enum not being sent to Controller
I have a DropDropListFor that looks like this:
using (Ajax.BeginForm("FilterListingsWorkflow", "Listing",
new {
categoryguid = Model.SelectedCategoryGuid,
workflowstatus = ...
0
votes
2answers
229 views
Why is the DropDown values Null in the POST action?
Below is the View:
<%@ Page Title="" Language="C#"
MasterPageFile="~/Views/Shared/Site.Master"
Inherits="System.Web.Mvc.ViewPage<MvcApplication1.Models.Index>" %>
...
0
votes
1answer
128 views
Move Html.DropDownListFor into EditorTemplate
Trying to create an editor template using a dropdownlist in MVC4. I can get the dropdownlistfor to work directly in the view as such:
@Html.DropDownListFor(model => model.Item.OwnerId, new ...
0
votes
1answer
407 views
How to update Chosen dropdownlist's items(cascade dropdownlist)?
I use Chosen plugin. I want to refresh Category (Chosen) dropdownlist, when change Section dropdownlist.
Here is view:
@model CategoryInputModel
@Html.DropDownListFor(model => model.SectionId, ...
2
votes
3answers
424 views
Html.DropDownListFor() Changes the SelectListItems in ASP.NET MVC
I need a DropDownList in page so I try this way:
Action:
[HttpGet]
public ActionResult GetPoint() {
...
List<SelectListItem> zooms = new List<SelectListItem>();
for (int i = 0; ...
0
votes
1answer
228 views
@HTML.DropDownForList - “onchange” event is not firing while select first item in dropdownlist [closed]
I have written "onchange" javascript for an @HTML.DropDownListFor control in my MVC application.
The problem is that, the event gets fired while I select any option except first item in list. Say, if ...
0
votes
1answer
202 views
MVC dropdownlistfor add null value
I am working in MVC
I added a "select all" option to a DropDownListFor as such
<tr><td valign="top">@Html.DropDownListFor(model => model.fk_Type, Model.ListType, "- Select All -", new ...
0
votes
2answers
735 views
The model item passed into the dictionary is of type 'System.Collections.Generic.List`1[System.Int32]'
ASP.Net MVC 4
I am trying to populate a list of Countries (data from Country table in DB) in a dropdownlist. I get the following error:
The model item passed into the dictionary is of type
...
1
vote
1answer
728 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. ...
1
vote
1answer
303 views
Show checkboxes depending on selected item in dropdownlist
How do i display a set of checkboxes depending on the item that has been selected in a dropdownlist?
I got a dropdownlist that contains 'states'. The user can add cities to a state. Doing this with 2 ...
0
votes
1answer
105 views
MVC DropDownListFor item in list
I have a ViewModel Like the following
public string Name {get; set;}
public List<Item> Items {get; set;}
and the Item class is:
public int ItemID {get; set;}
public bool IsMaster {get; set;}
...
0
votes
1answer
242 views
KendoUI cascading dropdownlists, need value from 2 dropdownlists.
I have 3 cascading dropdownlists as follows:
<p>
<label for="categories">Catergories:</label>
@(Html.Kendo().DropDownList()
.Name("categories")
...
0
votes
2answers
325 views
Populating multiple table data in multiple dropdownlists on one page in ASP.Net MVC4
Being a newbie, please excuse my trivial question. (ASP.Net MVC4)
After reading lots of posts/tutorials I am still not sure about how to approach. What I am trying to do is have three Dropdownlists ...
-1
votes
1answer
846 views
How do I bind the selected value of a kendoui dropdownlist to my model?
I have a KendoUI dropdownlist as follows:
@(Html.Kendo().DropDownList()
.Name("DeviceInterfaces")
.OptionLabel("Select ...
1
vote
1answer
205 views
MVC: Dynamically populate html select
I have a field that is generated for each row in the view as follows:
@Html.DropDownListFor(m => m.MenuParentKey, ViewBag.MenuKeys as SelectList)
But I want the drop-down to be populated ...
0
votes
1answer
130 views
How to get the selected value of a dropdowlist with javascript
I have a table with several @Html.dropdowlistfor in it.
I was trying to read the selected value byusing javascript, but all read is the html generated.
How can I read it??
for (var i = 0; i < ...
0
votes
1answer
110 views
How to get the value of the selected item of a dropdowlistfor that's inside a table with Json
I have this table in my view
<table class="tbl" id="tbl">
<thead>
<tr>
<th>
Region
</th>
...
0
votes
0answers
41 views
My DropDownListFor not appear in view
I want to have a DropDownList in Edit mode.( ASP.Net MVC ).This is a part of my view code :
<div class="editor-field">
<%: Html.DropDownListFor(model => model.Rank, new ...
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? ...

