The html.dropdownlistfor tag has no wiki summary.
27
votes
3answers
47k views
Create a Dropdown List for MVC3 using Entity Framework (.edmx Model) & Razor Views && Insert A Database Record to Multiple Tables
After reading 100's of articles on here about how to create a DropDown List in MVC 3 with Razor Views, I could not find one that fit my case. So after Hours and Hours of searching for the answer I ...
9
votes
2answers
14k views
How to write a simple Html.DropDownListFor()?
I'm new in ASP.NET MVC 2 and I'd like to write a very simple dropdown list which gives static options. For example I'd like to provide choices between "Red", "Blue", and "Green".
8
votes
3answers
20k views
asp.net mvc 3 pre-select Html.DropDownListFor not working in nerd dinner
Learning about dropdown lists, Im trying to add a RSVP create page for nerddinner as in Scott Gu's blog with a Html.DropDownListFor listing available dinners.
I can get the dropdown list populated ...
5
votes
1answer
2k views
ASP.NET MVC: DropDownListFor doesn't select any option
I have this to populate a drop down list in an ASP.NET MVC view.
<%= Html.DropDownListFor(model => model.Bikes,
Model.Bikes.Select(
x => new SelectListItem {
Text ...
3
votes
2answers
1k views
How to use MVC Html Helper .DropDownListFor<> with an Enum
In my MVC 3 Razor app, I have a Model with an enum..
Model Example:
public class EmployeeModel
{
public enum Title
{
Accountant = 111,
Sales = 222,
Production = 333
}
[Required]
public ...
2
votes
2answers
92 views
Creating DropDownListFor items in the view
I want to create a DropDownList with a binding for one of my model data, but i want the dropdown items to be built within the View and i do not want the items coming in the Model data or from my ...
2
votes
1answer
51 views
dropdownlist for following
var dropdown = (from role in db.aspnet_Users
where role.aspnet_Roles.Any(a => a.RoleName == "supervisor")
select new
{
...
2
votes
1answer
210 views
Passing a selected value from a partial view to the main view's viewmodel
As ASP.Net MVC3 newbies we have an issue that would like assistance with. (Questions at the bottom of this thread too.)
First of all I am not sure if the following is the best way to go about this ...
2
votes
2answers
165 views
What is a good way to edit two values with a single ASP .NET MVC dropdown?
A record is uniquely identified by its Kind and RecordId.
I have a set of records that I want to display as a dropdown, and on submitting I'd like to get SelectedKind and SelectedRecordId for ...
2
votes
1answer
462 views
ASP.NET MVC 3 @Html.DropDownListFor ignoring selectedValue
In my asp.net MVC 3 project I would like to create a contact that's related to a company.
You can either directly create a contact OR go via the company details view and add a new contact passing the ...
2
votes
1answer
348 views
Dropdown list with limited range of choices in Asp.Net MVC?
I want to bind a field in a View to a property in a ViewModel. The object is "Program" and has the properties "Name" and "Level". So the user should be able to set the name of a program and the level ...
2
votes
2answers
248 views
DropDownList Validation - Problem
I'm having a problem in ASP.NET MVC with DropDownList validation.
I have two actions "Create". They are defined as follow:
public ActionResult Create()
{
var categoriasDownloads = from ...
2
votes
1answer
756 views
Saving Dropdown list selection with Entity Framework in ASP.NET MVC solution
I'm looking for advice on a decent pattern for dropdown list selection and persistence of the selection with POCO EF please.
I have a list of IEnumerable<Country> in my view model where Country ...
2
votes
3answers
2k views
Html.DropDownListFor not behaving as expected ASP.net MVC
I am new to ASP.net MVC and I am having trouble getting dropdown lists to work correctly.
I have a strongly typed view that is attempting to use a Html.DropDownListFor as follows:
...
1
vote
1answer
56 views
Selected value not being set for ASP.Net MVC 3 DropDownListFor
I have a parent view model bound to a view that contains an property which is a list of other view models.
Here is the parent view model code:
var timeAvailability = (from u in ...
1
vote
1answer
44 views
Where does DropDownListFor get the model from?
You can create a dropdownlist using
@Html.DropDownListFor(model => model.SelectedId, model.DropDownItems);
but where does DropDownListFor get the value to pass into the model => ...
1
vote
2answers
40 views
Populating a dropdownlist from a value type
This obviously is pretty basic question but I haven't found my way around this: I'm trying to create a dropdown list for an integer property of my Model, so I can populate the dropdown with a default ...
1
vote
1answer
78 views
Selected value in asp.net MVC 4.0 dropdownlist
I am trying to make a dropdown list using "DropdownListFor" function and I want to have a value selected in it.
I have searched a lot and found the similar kind of solution of having a SelectList ...
1
vote
1answer
71 views
Set default dropdown defalut value based on viewbag
I have a dropdown list that reloads the page when its selected value is changed. This works and renders as expected. The only problem is that the dropdown list goes back to the default value. How can ...
1
vote
1answer
177 views
MVC-3 DropdownList or DropdownListFor - Can't save values in controller POST
I searches for hours (or days) and didn't find a solution yet. I want to edit a customer with a DropdownListFor for the salutation with the right preselected value.
I've got 3 entities (Database ...
1
vote
1answer
224 views
Html.DropDownListFor does not bind boolean SelectList
I have this code the constructs a select list as a boolean response
var responseList = new List<SelectListItem>();
responseList.Add(new SelectListItem { Text = "Going", Value = ...
1
vote
0answers
88 views
How to set the selected value of Html.DropDownListFor when the model property has value and select the optionLabel when property is null
I want my dropdown to automatically select the optionLabel if my model property is null. But also automatically select the value of my property if it has value.
What is happening to me is that my ...
1
vote
1answer
784 views
MVC3 DropDownListFor - a simple example?
I'm having trouble with DropDownListFor in my MVC3 app. I was able to use StackOverflow to figure out how to get them to appear on the View, but now I don't know how to capture the values in its ...
1
vote
1answer
446 views
MVC3 DropDownlistFor SelectedValue
I have a really strange issue on one of my edit pages. The dropdown below never get's the selected value.
@Html.DropDownListFor(model => model.Bodymaterial, ...
1
vote
2answers
501 views
ASP.NET MVC DropDownListFor does not honour SelectListItem.Selected
I am using DropDownListFor to render a dropdown list in a view. Somehow the rendered list does not select the SelectListItem with Selected set to true.
In the controller action:
var selectList = ...
1
vote
1answer
992 views
Trouble getting DropDownListFor to work on EditorFor in MVC3
I've got a pretty simple problem that has a solution I'm not able to find.
Given the following model:
public class InfoViewModel
{
public SelectList States { get; set; }
...
1
vote
1answer
1k views
MVC Scaffolding - Value cannot be null. Parameter name: source
Hi i have the next problem:
i followed the instruction of this post
but when i wanna add a product i get this error
Server Error in '/' Application.
...
1
vote
1answer
109 views
DropdownListFor doesn't select (who'd a guessed?)
I have a dropdownlist that will not display the selected value correctly. It does have the correct elements in it, has the correct text and values being used but there just doesn't seem to be a way to ...
1
vote
1answer
395 views
Problem with DropDownListFor SelectedItem
This has totally puzzled me.
Here's my View:
@Html.DropDownListFor(model => model.ScoreDescription,
Model.RatingOptions,
"--",
...
1
vote
1answer
1k views
Help me understand understand how to work with dropdownlistfor in MVC3
I'm new to MVC3 and have been working on a small site using EF and 'Code First'. I'm trying to do a few things in a view dealing with a drop down list and am wondering what the best way to go about ...
1
vote
3answers
3k views
MVC3 - Accessing contents of dropdownlist in Controller
Im new to MVC2/3 so keep that in mind. Also, using Ajax or jQuery is NOT an option.
I have a web page where the user must choose an item out of a dropdown list and then hit a "Filter" button. ...
1
vote
2answers
606 views
DropDownListFor selection not working — again
Yeah, I know, this question's been asked/answered 34798796873.5 times. I looked through all 3 bajillion of them, and I still have the problem. What am I missing here?
I tried several approaches and ...
1
vote
2answers
286 views
DropDownListFor population problem
I have the following 2 classes:
public class SomeClass
{
public int SomeClassID { get; set; }
...
}
public class AnotherClass
{
public int AnotherClassID { get; set; }
public int ...
1
vote
1answer
1k views
Asp.Net mvc 2 , DropDownListFor and Editor Template . Selected Value dosen't work
I Have 2 views. ProductForm.aspx and Category.ascx.
CategoryForm is a Partial View. I Call the Category.ascx from the ProductForm with EditorFor(model => model.Category) . In this partial view, there ...
1
vote
1answer
331 views
DropDownList not autosized properly within Jquery UI Accordion
My dropdownlist width is smaller than the longest text in the SelectList. When I click the dropdown, it resizes to fit properly. If I remove the .accordion from the div, the dropdowns all size ...
1
vote
1answer
391 views
Html.DropDownList returns an empty string in IE, works fine in FF
I have a dropdownlist that is simply a list of strings (salutations). When I submit the form, the field is an empty string no matter what value is selected.
In firefox, it works exactly as ...
1
vote
1answer
474 views
Issue with MVC2 DropDownListFor, only displaying the class-name
Good day,
I have this problem with Html.DropDownListFor which I can't seem to work out.. It gives me the correct number of options, if I do a breakpoint in the code where it is supposed to render the ...
1
vote
3answers
272 views
Why does a lamba-expression work, but when accesing the Model object directly it doesn't?
Here's the error I get:
Description: An error occurred during
the compilation of a resource required
to service this request. Please review
the following specific error details
and modify ...
1
vote
1answer
134 views
No “Specified argument was out of the range of valid values” with DropDownListFor
In one of my views I want to output a textbox:
Html.TextBoxFor(x=>x.Foo[0].Bar) %>
This gives me the error "Specified argument was out of the range of valid values" if Model.Foo is empty.
I ...
1
vote
1answer
1k views
ASP.Net MVC 2 DropDownListFor in EditorTemplate
I have a view model that looks like this:
namespace AutoForm.Models
{
public class ProductViewModel
{
[UIHint("DropDownList")]
public String Category { get; set; }
...
0
votes
1answer
32 views
Using DropdownListFor ignoring the “selected” value I've set in the model
Here is the controller code:
EfCategoriaRepository efCategoriaRepository = new EfCategoriaRepository();
model.Categoria= new List<SelectListItem>();
foreach (var categoria in ...
0
votes
2answers
70 views
Taking Null Value while Selecting in DropDownList in MVC 3
I am having the Controller as follows...
public ActionResult Create()
{
ViewBag.Dept = (DbStudent.StudentDetails.Select(s => s.StudDept)).Distinct();
return View();
...
0
votes
1answer
55 views
IE9 bug with Html.DropDownListFor
Hello I need some help with a bug in Internet Explorer 9. I am currently developing some CRUD screens in ASP.NET 4 MVC 3 Razor. In a multiple screen I use the @Html.DropDowListFor to create easy links ...
0
votes
1answer
74 views
How to select an item from DropDownListFor list? (MVC3)
I'm populating a drop down list using this code (and it works fine):
@Html.DropDownListFor(x => x.SelectedCountry, new SelectList(Model.Countries, "Value", "Text"), "Please Select a Country")
...
0
votes
1answer
45 views
MVC 3 DropDownListFor and the wrong value error
I have a problem with my code snippet inside the MVC 3 with Razor syntax. In my DB table (MySQL), I have a colum (FK) LanguageID [int]. Then, in that View, I want to assign to that column to the ...
0
votes
1answer
50 views
Databinding error with DropDownListFor in ASP.NET MVC 3?
I have a database table called Genre with the following fields:
Id (Seeded Primary Key)
Name (Name of Genre - Romance, Western, etc...)
I have a Model class called GenreDropDownModel which ...
0
votes
2answers
33 views
Set DropDownListFor
I have this in my model, the content is the full list of country :
public IList<LookupCountry> LookupCountry { get; set; };
public int SelectedCountry { get; set; }
The look like this
public ...
0
votes
1answer
66 views
How can I bind a DropDownList to an Ajax form with both post and get support?
I have a registration form for registering personal attributes. I am using both included Ajax.BeginForm function and also JSON to serialize the form. This form is updating the attributes and also ...
0
votes
0answers
69 views
MVC 3 DropdownList for Entity Object Property
I have a Domain Entity for User and I'm trying to create a simple "update user page" in ASP.NET MVC 3. I am having trouble setting the user's Role using a @Html.DropDownListFor to select and commit ...
0
votes
2answers
49 views
Refreshing MVC DropDownListFor with jQuery
I'm using jQuery to re-populate a DropDownListFor using the following code:
$('#Teste).change(function () {
$.ajax({
type: 'GET',
url: ...