如何在jquery multiselect中预选值?

时间:2011-10-19 21:11:07

标签: jquery asp.net-mvc-3 razor

我正在使用以下jquery多选控件(http://abeautifulsite.net/blog/2008/04/jquery-multiselect/#configuring),需要在下拉列表中预先选择一些值。

我可以通过以某种方式传递逗号分隔的项目列表(“valID1,valID2”)(任何其他方法)来实现此目的吗?我已经有了以前选择的存储列表。

1 个答案:

答案 0 :(得分:1)

关注my suggestion here然后稍微重新调整控制器操作,如下所示:

public ActionResult Index()
{
    var model = new MyViewModel
    {
        // preselect the first and the third item but obviously
        // this could be any list of ids
        SelectedValues = new[] { "1", "3" };
    };
    return View(model);
}