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
1answer
189 views
create an dropdownlistfor with overtype functionality mvc4
I'd like to create dropdownlistfor that lets the user to type a new value or select a predefined one from a dropdown list.
It is possible to create an editable dropdownlistfor in mvc? How can I do ...
0
votes
1answer
133 views
Change label on change DropDownListFor value
I use a DropDownListFor and a label text on my page.
<%=Html.DropDownListFor(x => x.MotiveClientType,
new SelectList(
Model.ClientMotives, ...
1
vote
1answer
1k views
mvc3 dropdownlist binding
I'm new in MVC3 and trying learn something. using Razor view engine. mysql database. I have a table where I keep the companies(companyID, companyName, etc.). I have a model with same attributes :
...
0
votes
2answers
629 views
Javascript Dropdown Menu - Refresh when the selection is changed
I am trying to set this up so that when a user changes the 'hier_start', the page is refreshed and the dropdown is preselected with the selection that was just made.
<form name='categories' ...
0
votes
2answers
280 views
“@Html.DropDownListFor” causes trouble in a [HttpPost] ActionResult. “Null Reference Exception was unhandled by the user” error appears
I've used a ViewModel to represent two entities in my database, "Categories" & "Manufacturers", because I want them as drop down list.
I've managed to create sound and working drop down lists of ...
1
vote
1answer
1k views
How to create a DropDownList from a LINQ query in MVC3?
I need to know how I could create a drop down list to represent all the categories in my "Categories" table.
I have already extracted the names and the values of each category I need, using this LINQ ...
0
votes
1answer
262 views
Simple MVC DropDownListFor
I need a dropdownlist to be populate with a simple list of numbers. I'm not sure if I can do this without having to create a new SelectList since it's just numbers.
@Html.DropDownListFor(model => ...
1
vote
5answers
2k views
How to highlight a selected row in a gridview?
I am adding a dropdown to gridview using template field as:
<asp:TemplateField HeaderText="Change Color">
<ItemTemplate>
<asp:DropDownList ...
0
votes
0answers
161 views
How to bind the text data that is read and display to gridview with variables select from dropdownlist?
im new here, and i would like your help on somethin.
I was ask to create a function where, when you choose the variables from the dropdownlist it display the data below the dropdownlist. I have ...
0
votes
0answers
153 views
How to change label's text when i select a value from dropdownlist in a grid view?
i used a Template Field to add dropdownlist to each row in a Grid view using following.
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="username"
...
0
votes
1answer
516 views
Ajax.beginform postback form using dropdown
In an MVC appllication, we have a dropdownlist on a form. I am using Ajax.Beginform() to post back data.
Is there a way to use dropdown selected index changed event to postback form data using ...
0
votes
2answers
781 views
Appending list items to MVC DropDownList with jQuery
I am trying to dynamically append list items to the MVC DropDownListFor with jQuery. Unfortunately nothing happens when I run my code. I have used console.log to double check the html that's being ...
1
vote
0answers
213 views
Dropdown ClientSide validation MVC3 not working
public class Encapsulated
{
[Required]
public string CategoryId { get; set; }
}
public class Category
{
public string ID { get; set; }
public string CategoryName { get; set; }
}
...
0
votes
2answers
200 views
Setting DropDownListFor CSS for options
I have the following that sets my dropdown to a ridiculous width:
<div class="editor-field">
@Html.DropDownListFor(x => x.TypeId, new SelectList(Model.Type, "TypeId", "TypeName"), null, ...
0
votes
2answers
550 views
Dependent DropDown in ASP.NET MVC?
view
<script type="text/javascript">
function getCities(abbr) {
$.ajax({
url: '@Url.Action("SayaclariGetir", "Enerji")',
data: { abbreviation: abbr },
dataType: ...
0
votes
1answer
51 views
Html.DropownlistFor with editablefield
I'm using a dropdownlistfor that populates some data from the database, the idea is that i want that the default value of the dropdown, has to be editable.
So the user can submit one of the options ...
1
vote
2answers
360 views
Change data in dropdownlist with ajax,jquery mvc
I have a dropdownlisftFor that populate some data from the database that is filtered, and a checkbox. The idea is that, when i uncheck the checkbox, I want to change the data, that is populated in the ...
1
vote
2answers
106 views
MVC3 - DropDownListFor not populating
I have tried for the entire day but the drop down,list I have fails to load. Its supposed to be a simple application. I need to create a new Employee, while the create view renders I a dropdownlist ...
2
votes
3answers
268 views
MVC DropDownListFor and StringLength Attribute Not Playing Well together
My stringlength validation always fails on dropdownlists with a string value.
Here is my model:
[Required(ErrorMessage = "Required")]
[StringLength(2, MinimumLength = 2)]
[Display(Name = "Home ...
1
vote
4answers
1k views
MVC3 - list information used for dropdownlist is null after post
I wish to show a DropDownList in a view and therfore include in my model (ExampleAddSetupDto) sent to a view a list of entries to populate the dropdownlist. That works fine, but if I have a validation ...
2
votes
4answers
2k views
Store extra value per item in drop down list
I have a list of items in a drop down list within a Razor view. In the database each item has 3 values associated with it - the database id, short name (for display), and long name (for passing to a ...
1
vote
1answer
210 views
Unable to pass correct value of DropDownListFor<> in controller in MVC3
I am developing an application in which i have a dropdownlist and i want that whenever there is any change in selection of dropdownlist the partial view for the same must be selected accordingly.
I ...
0
votes
0answers
154 views
Html.DropDownFor Binding Issue in IE8 Related to CSS
All,
I'm having this strange issue in IE8 regarding binding model data to an Html.DropDownListFor element with a CSS width attribute applied.
I have a parent dropdown list that when changed causes a ...
1
vote
1answer
787 views
ASP MVC multiple dropdownlist search form
I'm trying to perform a search with a form that has multiple dropdownlistfor to restrict the search values, the dropdownlist are filled thru a viewmodel.
view model: PesquisaHomeViewModel.cs
using ...
1
vote
1answer
667 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 ...
3
votes
0answers
276 views
ASP.NET 4.3 Scaffolding: Add Controller vs Add View - different behavior?
I am trying to dig into ASP.NET MVC 3, using the standard tutorials in the web, and I encounter a strage problem.
Currently, I am following the samples in a book, using a "Movie" class with movie ...
0
votes
1answer
268 views
How to use onSubmit() in jsp?
I have a dropdown list in jsp page. When a user selects a option I need to update the value into database using onSubmit(). I need some help in executing update query using onSubmit.
mycode:
...
1
vote
2answers
220 views
Strange behavior in helper method DropDownListFor
I see a weird thing in DropDownListFor. This is a part of My View:
1:<dt>
2: @Html.LabelFor(model => model.MainModel.DefaultAreaId)
3:</dt>
4:<dd>
5: @Html.DropDownListFor(model ...
0
votes
0answers
197 views
@Html.DropDownListFor Parent/Child incorrect value selected
I've got two dropdownlists set up with classic Parent/Child behavior - changing the Parent resets the Child values. Everything works great except when the selected Child value for one Parent is in ...
0
votes
2answers
2k views
MVC3 Razor SelectedValue in DropdownListFor
I've the following code for a DropDownListFor and is working ok
@Html.DropDownListFor(Function(model) model.Habilitacoes, New SelectList(ViewBag.Habilitacoes, "KeyHL", "DescricaoHL"), New With ...
2
votes
1answer
138 views
Any way to not have to retroactively produce these data- attributes?
This Html.DropDownListFor helper should produce the data- attributes but fails to if there is any nesting. So this fails to produce them:
@(
Html.DropDownListFor(
m => m.P[0].CId,
new ...
0
votes
0answers
259 views
Drop down list styling, can't get the padding right
What seemed like an easy task has become hours of puzzling by now.
I have a dropdownlist (@html.dropdownlistfor(model)), which I style via css ( new { @class = "searchDropDownList" } )
The thing is, ...
0
votes
0answers
239 views
Value of dropdown not set when page is refreshed
I'm having trouble setting the value of a dropdown list after refresh. The dropdown list values are populated using ViewBag.
I have a table. When the user adds a new record, the table is updated. If ...
1
vote
3answers
439 views
MVC3 dropdownlistfor
I would like to make a dropdown list, with the numbers 0-10. So users can rate something.
At the moment, I have a label: @Html.LabelFor(model=> model.RATE)
How can I modify this code that I will have ...
0
votes
4answers
6k views
Bind dropdownlist in gridview in asp.net
html code:
<ItemTemplate>
<asp:Literal ID="faculty" runat="server" Text='<%#Eval("facultyname")%>'>
</asp:Literal>
...
0
votes
2answers
126 views
Code First conventions confusion
Models:
public class Status
{
public int Id { get; set; }
}
public class Podcast
{
public int Id { get; set; }
public virtual Status Status { get; set; }
}
The Podcast table has the ...
2
votes
1answer
144 views
Does the DropDownList selected property ever change in html?
I am using mvc3 and have a dropdownlist (using DropDownListFor helper). I set the selected value to my default value. When the user selects a different item, the selected property of that item is not ...
2
votes
2answers
4k views
Binding an string array to a DropDownList in MVC Razor
Do you know how easily I can bind the contents of a string array to a DropDownList in view for MVC Razor?
public static string[] AgeRagne = new string[] { "Sun", "Mon", "Tues", "Wed" };
UPDATE:
...
1
vote
2answers
368 views
DropDownlistFor Creating New Entity with MVC3
I'm developing a small app in order to better understand how MVC3 anda Razor works. I'm using MVC3, all code was generated automatically (dbContext via T4, Controller via Add Controller, Databese from ...
0
votes
1answer
93 views
How do i access data from multiple models/controllers in my view?
I'm trying to create a view that will create a subcategory.
In order to create this view I inherit my model for subcategories in the view in order to access the required attributes etc.
Now one of ...
1
vote
2answers
347 views
Html.DropDownListFor always returning value '0' regardless of whatever selected
I'm trying to bind an enum AgeRange using Html.DropDownListFor but regardless of whatever I'm choosing from View page, Controller is getting a value '0'. Can anyone help me to fix this issue?
EDIT: ...
2
votes
1answer
2k views
DataBinding: 'System.Web.Mvc.SelectListItem' does not contain a property with the name 'CategoryTypeID'
I am using MVC. I want to pass the category data I entered from my view and passed to my Post/ Createcontroller, but it's not's letting me pass my categoryTypeID that I have selected from my ...
3
votes
1answer
900 views
ASP.net Gridview Itemtemplate Dropdownlist
I am using C# ASP.net, and relative new to it, and need to accomplish below.
In my VS2010 web application project I have webform with a Gridview which fetches the data from a table.
In the Grid, I ...
0
votes
3answers
2k views
How to dynamic bind html.DropDownList() in MVC
I have a dropdownlist and a textbox in my page,I want to change the dropdownlist with the textbox change. I use JQuery post like this:
$("#txtBuildId").change(function() {
var builddate = ...
0
votes
1answer
221 views
Why does the DropDownListFor helper fail after a validation error?
Been at this for too long! any advice on the following problem...
code added:
Model: AccountModels.cs
[Required]
[Display(Name = "Select role: ")]
public String Role { get; set; }
Controller: ...
3
votes
3answers
3k views
MVC DropDownList SelectedValue not displaying correctly
I tried searching and didn't find anything that fixed my problem. I have a DropDownList on a Razor view that will not show the the item that I have marked as Selected in the SelectList. Here is the ...
2
votes
6answers
2k views
How to combine two dataTextFields for SelectList Description in asp.net MVC 3 using @Html.DropDownListFor
I am returning some stored contacts to view for DropDownList and I am not able to include multiple dataTextFields on my SelectList.
Currently I have:
@Html.DropDownListFor(model => ...
0
votes
1answer
284 views
Html.Dropdownlistfor does not set values
I have multiple dropdown list:
@Html.DropDownListFor(x => x.HaveColoSpace.SelectedOptions, new SelectList(Model.HaveColoSpace.Options, "Value", "Text"), new { multiple = "multiple" ...
0
votes
1answer
442 views
jquery chenge function not working on dropdown
jquery change function on dropdown is not working at my application and working at jfFiddle Application code
<select id="title" name="title"><option value="">-select-</option>
...
2
votes
2answers
834 views
asp.net mvc dropdownlistfor Object reference not set to an instance of an object error
I am trying to create a drop down list using asp.net mvc.
Model:
public string Status { get; set; }
public List<SelectListItem> StatusList { get; set; }
public AddUser()
{
...


