0

我看到了这个,但是我有一个不同的问题。我有这样的看法:

@model myPrj.Models.RollCallModel
...
<table>
    <tr> //Master DDL
       <td>
          @Html.LabelFor(model => model.CourseID) 
          @Html.DropDownListFor(model => model.CourseID,
            new SelectList(new myPrj.Models.myDbContext().Courses
               .Where(c => c.StatusID == 0), "ID", "ID"), 
            "choose...", new { id = "ddlCourse"})
          @Html.ValidationMessageFor(model => model.CourseID)
       </td>
     </tr>
     <tr> //Detail DDL
        <td>
            @Html.LabelFor(model => model.PersonnelID) 
            @Html.DropDownListFor(model => model.PersonnelID,
                 null, "choose another...", new { id = "ddlPersonnel"})
            @Html.ValidationMessageFor(model => model.PersonnelID)
        </td>
     </tr>
</table>
...

我对使用 jquery 进行级联更新非常了解。我的问题是,是否可以对这些 DDL 执行级联更新,而无需<option>something</option>为 Detail DDL 编写迭代?如果没有,最方便的选择是什么?

注意:事实上,由于模型绑定的约定,我正在尝试使用 html 助手呈现详细 DDL。如果我别无选择,只能通过 渲染它<select id=""></select>,我该如何将此select元素绑定到模型?

谢谢

更新:似乎没有办法......(仍在等待并确实在搜索......)

4

2 回答 2

0

是的!当然有:详情请看这里。但是,它需要一个额外的操作方法和每个 Detail DDL 的部分视图。

最后我想决定通过 JQuery 并迭代地添加<options>JsonResult ......

于 2013-06-04T12:48:47.843 回答
0

要在 MVC 中填充下拉列表,请在您的视图中使用它作为替代:

@Html.DropDownListFor(model => model.CourseID, new SelectList((IList<SelectListItem>)ViewData["MyCourse"],
                                            "Value", "Text"), new { @class = "span5" })

支持视图,您应该在相应的控制器操作中编写以下内容:

public ActionResult RoleList(int id)
{
     ViewData["MyCourse"] = FillCourseList(id);
     CourseModel model = new CourseModel();
     model.courseid= id;
     return View(model);
}

要填充 ViewData,您需要在同一控制器中使用相应的函数,如下所示:

public IList<SelectListItem> FillCourseList(int id)
        {
            List<master_tasks> lst = new List<master_tasks>();
            lst = _taskInterface.getMasterTasks();
            IList<SelectListItem> items = new List<SelectListItem>();

            items.Add(new SelectListItem
                {
                    Text = "Select Task",
                    Value = "0"
                });
            for (int i = 0; i < lst.Count; i++)
            {
                items.Add(new SelectListItem
                {
                    Text = lst[i].code + " - " + lst[i].name,
                    Value = lst[i].id.ToString()
                });
            }
            return items;
        }

IList 是一个通用列表,其中列表项类型转换为 Html.Dropdownlistfor IEnumerable 项。

于 2013-06-04T12:53:12.863 回答