Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC 4 ViewModel with DropDownList data

I'm using @html.EditorFor to render my model in edit mode, and a dropdownlist is not rendered.

Here's my ViewModel:

     public class RiskAutoViewModel
     {
       public RiskAutoViewModel()
       {
         VehicleMakeList = new SelectList(new List<VehicleMake>() { new VehicleMake() { Id = 1, Name = "Renault" }, new VehicleMake() { Id = 2, Name = "Peugeot" } });
       }


    public int NoClaimsDegree { get; set; }

    public int VehicleValue { get; set; }

    public int EngineCapacity { get; set; }

    public int VehicleMake { get; set; }

    public SelectList VehicleMakeList { get; set; }
  }

VehicleMake is rendered as a textbox and VehicleMakeList is not rendered at all. What I'd like is to render a dropdownlist containing the list of VehicleMake and set its value to the one of VehicleMake.

When the model is saved, VehicleMake should be set to the value of the selected item in the list.

How can I do that ?

EDIT

Since I can't type any code in the comment boxes below, I'll write a follow up here.

I ended up creating a EditorTemplate such as:

<div class="editor-label">
    @Html.LabelFor(model => model.VehicleMakeList)
</div>
<div class="editor-field">
    @Html.DropDownListFor(model => model.VehicleMake, Model.VehicleMakeList)
    @Html.ValidationMessageFor(model => model.VehicleMake)
</div>

And now my ViewModel looks like this:

[Required]
[ScaffoldColumn(false)]
public int VehicleMake { get; set; }

[Display(Name = "Marque", Prompt = "Marque", Description = "Renseigne la marque du véhicule")]
public SelectList VehicleMakeList { get; set; }

Now this leads me to another question (maybe I should as in a different thread) but I actually have TWO dropdowns in that View. And the items in the second dropdown are basically dynamic and they depend on the item selected in the first dropdown. This is dead easy to do with AJAX but with MVC I'm lost. How do people do that usually ?

like image 263
Sam Avatar asked Feb 01 '13 20:02

Sam


2 Answers

Unfortunately, there is no built in support for drop down lists in the editor for templates. You can either write your own editor template, or use the html helper method @Html.DropDownListFor() in your view.

Darin Dimitrov's answer to this question can walk you through the process of building an editor template for drop down lists, if you are so inclined.

The quickest way to get this working would be to do this in your view:

@Html.EditorFor(model => model.NoClaimsDegree)
@Html.EditorFor( model => model.VehicleValue )
@Html.EditorFor( model => model.EngineCapacity )
@Html.DropDownListFor( model => model.VehicleMake, Model.VehicleMakeList, "Select a make" )
like image 66
Forty-Two Avatar answered Oct 28 '22 09:10

Forty-Two


I think the model for dropdownlist should be:

public List<System.Web.Mvc.SelectListItem> VehicleMakeList {get; set;}

And initialized like:

VehicleMakeList = new List<System.Web.Mvc.SelectListItem>() 
{ 
   new SelectListItem { Value = "1", Text = "Renault" }, 
   new SelectListItem { Value = "2", Text = "Peugeot" } 
};

Or Using a Datasource:

    VehicleMakeList = db.VehicleMakers /*EF, LINQ2SQL, ADO.NET or any supported external source*/
       .Select(v=> new SelectListItem { Text = v.Name, Value = v.Id})
       .ToList();

View:

@Html.DropDownListFor(model => model.VehicleMake, Model.VehicleMakeList)
like image 10
JOBG Avatar answered Oct 28 '22 08:10

JOBG