@using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @using EMIS.Utility; @{ ViewBag.Title = "List"; } @section scripts{ }
@Html.Position()
@Html.PositionCondition()
@Html.Hidden("SelectedID")
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/YearsDropdownListBanid"), Name = "ddlSchoolYear", OnSelect = "reload", SelectedValue = BaseExtensions.GetCurrentSchoolYearID() }, new Dictionary { { "data-condition", "dgStudentExaminationCourseList" } })
  • 考试性质:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_ExamsCategory, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExamsCategory", Name = "ddlExamsCategory", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentExaminationCourseList" } })
  • 考试方式:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_ExaminationMode, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationMode", Name = "ddlExaminationMode", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentExaminationCourseList" } })
  • 考试形式:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.EX_ExaminationStyle, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationStyle", Name = "ddlExaminationStyle", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentExaminationCourseList" } })
排考课程
@Html.ContextMenuBar("List")
@Html.PositionBatchModify()
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="ExaminationPlanID"}, new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="CoursematerialName", HeaderText="考试科目", Align=AlignStyle.Center, OverflowLength=11, Width=0.1 }, new BoundFieldColumn { FieldName="ExaminationModeName", HeaderText="考试方式", Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="ExamsCategoryName", HeaderText="考试性质", Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="ExaminationStyleName", HeaderText="考试形式", Align=AlignStyle.Center, Width=0.05}, new BoundFieldColumn { FieldName="ExaminationDate", HeaderText="考试日期", Formatter= Formatter.OnlyYearMonthDay, Align=AlignStyle.Center, Width=0.05}, new BoundFieldColumn { FieldName="ExaminationTime", HeaderText="考试时间", Align=AlignStyle.Center, Width=0.05}, new BoundFieldColumn { FieldName="ClassroomNames", HeaderText="考场", Align=AlignStyle.Center, Width=0.05 }, //new BoundFieldColumn { FieldName="RecordStatusDesc", HeaderText="状态", Align=AlignStyle.Center, Width=0.05 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/StudentExaminationCourse/List"), ID = "dgStudentExaminationCourseList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })