@Html.DropDownListFor(m => m.branch, CommonMethod.getBranch("",Model.branch), "--Select--", new { @multiple = "multiple" })
@Html.DropDownListFor(m => m.division, CommonMethod.getDivision(Model.branch,Model.division), "--Select--", new { @multiple = "multiple" })
我有两个DropDownListFor实例。我想为之前为Model.branch和Model.division存储的值设置为true。这些是存储ID的字符串数组
class CommonMethod
{
public static List<SelectListItem> getDivision(string [] branchid , string [] selected)
{
DBEntities db = new DBEntities();
List<SelectListItem> division = new List<SelectListItem>();
foreach (var b in branchid)
{
var bid = Convert.ToByte(b);
var div = (from d in db.Divisions where d.BranchID == bid select d).ToList();
foreach (var d in div)
{
division.Add(new SelectListItem { Selected = selected.Contains(d.DivisionID.ToString()), Text = d.Description, Value = d.DivisionID.ToString() });
}
}
}
return division;
}
}
对于模型中的选定项,分割的返回值被选为true,但在视图方面,它未被选中。
答案 0 :(得分:52)
使用ListBoxFor
代替DropDownListFor
:
@Html.ListBoxFor(m => m.branch, CommonMethod.getBranch("", Model.branch), "--Select--")
@Html.ListBoxFor(m => m.division, CommonMethod.getDivision(Model.branch, Model.division), "--Select--")
branch
和division
属性显然必须是包含所选值的集合。
使用视图模型构建多选下拉列表的正确方法的完整示例:
public class MyViewModel
{
public int[] SelectedValues { get; set; }
public IEnumerable<SelectListItem> Values { get; set; }
}
将填充在控制器中:
public ActionResult Index()
{
var model = new MyViewModel();
// preselect items with values 2 and 4
model.SelectedValues = new[] { 2, 4 };
// the list of available values
model.Values = new[]
{
new SelectListItem { Value = "1", Text = "item 1" },
new SelectListItem { Value = "2", Text = "item 2" },
new SelectListItem { Value = "3", Text = "item 3" },
new SelectListItem { Value = "4", Text = "item 4" },
};
return View(model);
}
并在视图中:
@model MyViewModel
...
@Html.ListBoxFor(x => x.SelectedValues, Model.Values)
HTML帮助程序将自动预选其值与SelectedValues
属性匹配的项目。
答案 1 :(得分:12)
对我而言,它也适用于@Html.DropDownListFor
:
<强>型号:强>
public class MyViewModel
{
public int[] SelectedValues { get; set; }
public IEnumerable<SelectListItem> Values { get; set; }
}
<强>控制器:强>
public ActionResult Index()
{
var model = new MyViewModel();
// the list of available values
model.Values = new[]
{
new SelectListItem { Value = "2", Text = "2", Selected = true },
new SelectListItem { Value = "3", Text = "3", Selected = true },
new SelectListItem { Value = "6", Text = "6", Selected = true }
};
return View(model);
}
<强>剃刀:强>
@Html.DropDownListFor(m => m.SelectedValues, Model.Values, new { multiple = "true" })
控制器中提交的SelectedValues类似于:
答案 2 :(得分:0)
尽管主题很陈旧,但是在这里跟随其他答案之后发布了这个答案,不幸的是这对我不起作用。因此,对于那些可能最近或不久后在这里跌跌撞撞的人来说,以下对我有用。
对我来说,收获是MultiSelectList
课,而我正在使用SelectList
。
不知道2012年或2015年的情况。但是,现在这些辅助方法@Html.DropDownListFor
和@Html.ListBoxFor
辅助方法都接受IEnumerable<SelectListItem>
,因此您不能传递任何随机的{{1} }反对并期望这些辅助方法可以完成任务。
这些帮助器方法现在还接受IEnumerable
和SelectList
类的对象,您可以在其中创建对象时直接传递选定的值。
例如,请参见下面的代码,我如何创建多选下拉列表。
MultiSelectList