I want to bind @Html.DropDownListFor
from Model
data without using Viewbag
and look at many different examples on the web. But most of
You are on a good track by having the list items in your model. I don't know how you have implemented that in your code.
The Lab
property in your model class should be an IEnumerable, List or Collection of what you want. and then in your razor view, the looks fine.
Perhaps what you're forgetting is to initialise the list from the action method in the controller before sending it to the view. E.g:
var model = new ViewModel{
Labs = repository.GetLabs();
}
Above i assume the repository should be something that has access or means of getting the needed data, and also that the Labs
property is defined as IEnumerable<Lab> Labs
in the ViewModel class.
All should work. Perhaps you should be clear as to what error you're getting.
The strongly typed view model approach which does not use dynamic stuff like ViewBag
You can add a new property to your view model for the SELECT options of type
IEnumrable<SelectListItem>
.
view model is a simple POCO class used to transfer data between view to action method and vice versa. They are specific to the views. Add properties only needed for the view.
public class CreateUserVm
{
public IEnumrable<SelectListItem> Labs { set;get;}
public int SelectedLabId { set;get;}
//Add other properties as needed for the view
}
and in your GET action, create an object of this view model, load the Labs property and send that to the view.
public ActionResult Create()
{
var vm= new CreateUserVm();
// Hard coded for demo. You can replace with real data from db
vm.Labs = new List<SelectListItem> {
new SelectListItem { Value="1", Text="One" },
new SelectListItem { Value ="2", Text="Two" }
};
return View(vm);
}
and in the view which is strongly typed to this view model, call the DropDownListFor helper method
@model CreateUserVm
@Html.DropDownListFor(f=>f.SelectedLabId, Model.Labs,"Select one")
Pre-selecting an option in the dropdown
If you like to pre select one option when razor renders the page, You can set the SelectedLabId
property value of your view model to the value
property value of of the Option item(SelectListItem).
public ActionResult Create()
{
var vm= new CreateUserVm();
// Hard coded for demo. You can replace with real data from db
vm.Labs = new List<SelectListItem> {
new SelectListItem { Value="1", Text="SugarLab" },
new SelectListItem { Value ="2", Text="CandyLab" },
new SelectListItem { Value ="3", Text="SodaLab" }
};
vm.SelectedLabId = 2; // Will set "CandyLab" option as selected
return View(vm);
}
If you want to use real data, instead of the hard coded 2 items, you can do this
vm.Labs = dbContext.Labs.Select(x=>new SelectListItem { Value=x.Id.ToString(),
Text= x.Name }).ToList();
Assuming dbContext
is your DbContext class object and it has a Labs
property of type DbSet<Lab>
where each Lab entity has an Id and Name property.