Strongly-typed binding to a DropDownListFor?

前端 未结 4 1381
盖世英雄少女心
盖世英雄少女心 2021-01-05 03:34

Normally I would bind data to a DropDownListFor with a SelectList:

@Html.DropDownListFor(model => model.CustomerId, new SelectLi         


        
相关标签:
4条回答
  • 2021-01-05 03:54

    You could create the select list itself in the controller and assign it to a property in your view model:

    public IEnumerable<SelectListItem> OrdersList { get; set; }
    

    The code in your controller will look like this:

    model.OrdersList = db.Orders
                         .Select(o => new SelectListItem { Value = o.OrderId, Text = o.ItemName })
                         .ToList();
    

    In the view you can use it like this:

    @Html.DropDownListFor(model => model.CustomerId, Model.OrderList)
    

    I personally prefer this approach since it reduces logic in your views. It also keeps your logic 'stronly-typed', no magic strings anywhere.

    0 讨论(0)
  • 2021-01-05 03:59

    There doesn't appear to be an overloaded constructor to allow for this. But there's no harm in manually specifying the DataTextField and DataValueField as a string is there?

    0 讨论(0)
  • 2021-01-05 03:59

    When we use strongly typed views, we can use the @Html.DropDownListFor() method. This helper method will need the list of departments to first populate the dropdown and then set the employee’s department id passed in model object as selected item.

        public ActionResult edit(int id)
    {
        Employee emp = db.Employees.Where(e => e.EmployeeId == id).FirstOrDefault();
        ViewBag.DepartmentListItems = db.Departments.Distinct().Select(i => new SelectListItem() { Text = i.DepartmentName, Value = i.DepartmentId.ToString() }).ToList();
        return View(emp);
    }
    

    The list items in view bag will be used to bind the dropddownlist and html helper will set the DepartmentId based on the Employee model passed to the view. View Code below.

    @Html.DropDownListFor(model => model.DepartmentId, ViewBag.DepartmentListItems as IEnumerable<SelectListItem>,"Select")
    
    0 讨论(0)
  • 2021-01-05 04:06

    for that u can use a ViewBag for storing a data into your Drop Down Control

    here is an example of it ..............

    @Html.DropDownList("department", (IEnumerable<SelectListItem>)@ViewBag.DepartmentList, new { value = @ViewBag.department, style = "width:140px", onchange = "OnDepartmentChange(this)" })
    

    in controller in Index method you can write like

     ViewBag.Department = department;
    
    0 讨论(0)
提交回复
热议问题