Razor mutliselect dropdown-设置在ASP.Net MVC的多选下拉列表中选择的值

时间:2017-07-04 18:14:08

标签: asp.net-mvc razor dropbox

我需要一种方法在Web应用程序(ASP.NET,Mvc)的编辑视图中的多选下拉列表中设置已选择的值

<div class="form-group">
 <label>Choose Categories</label>
     @Html.DropDownListFor(model => model.SelectedValues, new MultiSelectList(Models.GetCategoryList().OrderBy(c => c.Value), "Key", "Value"), "Select Category", new { @class = "chzn-select form-control", multiple = "multiple" })                               
   </div>

这是视图代码,这里我将选定的ID传递给选定的数组。(当我从DB返回值时,将这些值分配给数组然后分配到此处。

我需要像enter image description here

这样的编辑视图

请有人建议这样做

谢谢。

1 个答案:

答案 0 :(得分:0)

要生成此视图,您可以使用select2 jquery插件。请查看以下链接。

https://select2.github.io/examples.html#multiple