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 dropdownlists (one that contains all states, and the other one containing all possible cities) would take forever for the user to add them all.
So in this case a set of checkboxes of all cities would be a more user-friendly approach. But how do i do that? And how do I get everything posted back?
I simply don't have any idea on how to do this, so i don't have code to show either! :(
[EDIT]
Part of my controller:
public ActionResult Index()
{
IEnumerable<SelectListItem> ddlStates= dataContext.States
.Select(c => new SelectListItem
{
Value = c.StateID.ToString(),
Text = c.Name
});
ViewBag.States = ddlStates;
return View();
}
The view:
@model dataContext.States
@{
ViewBag.Title = "Details";
}
@Html.DropDownList("States")
This is as far as i came.