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.
0
votes
2answers
937 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
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
986 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
442 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
319 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
304 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
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
0answers
18 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
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
1answer
106 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
597 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
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 ...
1
vote
2answers
92 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
161 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
40 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
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 ...
1
vote
1answer
224 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
227 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
1answer
106 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
45 views
On a PayPay form, is it possible to code two select fields (dropdowns)?
I know how to code related select fields, e.g., color and size for a product, but not sure how to have 2 select fields (dropdowns) for 2 different products. Do I have to code two separate forms? or is ...
0
votes
1answer
103 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
1answer
119 views
Trouble parsing Razor DropdownListFor(m => ListDictionary[key]) upon HTTP POST
I have a view model property to hold a list of dropdown selection values like:
private ListDictionary _claimDropdownValueCollection = new ListDictionary();
public ListDictionary ...
0
votes
2answers
236 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
0answers
204 views
How do I get the value of a drop-down list of worksheet in C#
The help that I need is how do I get the value of a drop-down list that I'm creating by code C#? I don't know how to get the value of the selected item.
Any idea how to achieve this?
This is the ...
1
vote
0answers
187 views
JavaScript image combobox v3.2 selected attribute
I'm using JavaScript image combobox v3.2 plug-in , it's a drop-down list with images and I'm just trying to set selected attribute to one of the options of the drop down list using PHP , because I'm ...
1
vote
2answers
674 views
Knockout Js Dropdown not loading with values from WebAPi Service
Knockout Js Dropdown not loading with values from WebAPi Service
Code is as below, Please help me.
This is the knock out js call for drop down
<select data-bind="options: menus, optionsText: ...
0
votes
1answer
147 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
2answers
191 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
1answer
466 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
496 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
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
1answer
230 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 ...
1
vote
1answer
4k views
MVC4 Razor drop down list binding with foreing key
So as I wanted to have a deeper understanding. I added a little bit more of fucntionality to MSFT tutorial on MVC4 you can find here ...
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
0answers
343 views
Using DropDownListFor inside foreach loop ASP.NET MVC
I have trouble with list including selectlist. I'm populating a drop-down list inside a foreach loop and my select list comes populated; everything is ok up to here but, I'm storing the forms in ...
0
votes
2answers
94 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 ...
0
votes
1answer
224 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
1answer
107 views
validation failing on dropdown MVC
I am using code-first with EF. Validation seems to be failing on a dropdown list with the error System.NullReferenceException: Object reference not set to an instance of an object. This happens when I ...
0
votes
2answers
977 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
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 ...
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
111 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
304 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
333 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 ...
0
votes
1answer
157 views
MVC Model Instantiation
I'm not grasping some conceptual basics with MVC models and I'm hoping for some helpful clarification.
In my MVC 4 web app, I have a view model that builds an IEnumerable<SelectListItem> for ...


