@using Bowin.Web.Controls.Mvc; @using EMISOnline.Entities; @using EMISOnline.Web.Controls; @model EMISOnline.Entities.EM_CourseChapter @{ ViewBag.Title = "List"; }
  • @Html.Button(new ButtonOptions() { ID = "btnAdd", Text = "新增章节" }) @Html.Button(new ButtonOptions() { ID = "btnSave", Text = "保 存" }) @Html.Button(new ButtonOptions() { ID = "btnDelete", Text = "删除章节" })
章节目录 @Html.Tree(new TreeOptions() { ID = "ChaperTree", Name = "ChaperTree", IsCascadeCheck = false, ItemSourceUrl = "~/CourseBuild/GetChaperTree?CoursematerialID=" + Request["CoursematerialID"] })
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete", })) { @Html.Hidden("CourseChapterID") @Html.Hidden("CoursematerialID", Request["CoursematerialID"]) @Html.Hidden("type")
所属章节: @* @Html.DropdownList(new DropdownListOptions { CssClass = "easyui-combotree", ItemSourceUrl = "~/CourseBuild/GetChaperTree?CoursematerialID=F6FCCB89-0CF0-4F73-9B45-AD26733CA2B2", ID = "ParentCourseChapterID", Name = "ParentCourseChapterID" }, new Dictionary { { "class", "easyui-combotree" } })*@
章节名称: @Html.TextBoxFor(model => model.Name, new TextBoxOptions { Required = true, IsRequired = true })
序号: @Html.TextBoxFor(model => model.OrderID, new TextBoxOptions { })
}