@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "AdultExaminationScheduleList"; } @section scripts{ }
@Html.Position()
查询条件
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.None, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), SelectedValue = BaseExtensions.GetCurrentSchoolYearID(), ID = "SchoolYearDropdown", Name = "SchoolYearDropdown", OnSelect = "reload", OnLoadSuccess = "SchoolyearLoaded" })
  • 时间段:
  • @Html.TextBox(new TextBoxOptions { TextBoxType = TextBoxType.Date, ID = "txtStartDate", Name = "txtStartDate", OnClear = "startDateCleared", OnChange = "startDateChanged" })- @Html.TextBox(new TextBoxOptions { TextBoxType = TextBoxType.Date, ID = "txtEndDate", Name = "txtEndDate", OnClear = "endDateCleared", OnChange = "endDateChanged" })
  • 考试科目:
  • @Html.ComboGrid(new ComboGridOptions { TextField = "CourseName", ValueField = "CoursematerialID", OnSelect = "reload", ID = "cbgCoursematerial", Name = "cbgCoursematerial", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="CourseName", HeaderText="课程名称", Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Coursematerial/ListForDropdown"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } })
  • 考试性质:
  • @Html.DictionaryDropDownList((EMIS.ViewModel.DictionaryItem.CF_ExamsCategory), new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExamsCategory", Name = "ddlExamsCategory", OnSelect = "reload" })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.ComboGrid(new ComboGridOptions { TextField = "Name", ValueField = "CollegeID", Name = "cbgCollege", ID = "cbgCollege", OnSelect = "queryStandard", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/College/ListOnlyCollege"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } })
  • 年级:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_Grade, new DropdownListOptions { ID = "ddlYear", Name = "ddlYear", BindType = DropdownListBindType.SelectAll, OnSelect = "queryStandard" })
  • 专业名称:
  • @Html.ComboGrid(new ComboGridOptions { TextField = "StandardName", ValueField = "StandardID", OnSelect = "queryClassmajor", Name = "cbgStandard", ID = "cbgStandard", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="StandardName", HeaderText="专业名称", Align=AlignStyle.Center } }, IsAutoLoad = false, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Grademajor/StandardBindComboGridOptions"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } })
  • 班级名称:
  • @Html.ComboGrid(new ComboGridOptions { TextField = "Name", ValueField = "ClassmajorID", Name = "cbgClassmajor", ID = "cbgClassmajor", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="班级名称", Align=AlignStyle.Center } }, IsAutoLoad = false, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Classmajor/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } }, new Dictionary { { "data-condition", "dgRetakePlanStudentList" } })
  • 教室:
  • @Html.ComboGrid(new ComboGridOptions { TextField = "Name", ValueField = "ClassroomID", OnSelect = "reload", ID = "cbgClassroom", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Code", HeaderText="教室代码", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="Name", HeaderText="教室名称", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="FloorLevel", HeaderText="所在楼层", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="Examinationseating", HeaderText="总座位数", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="RemainSeatCount", HeaderText="剩余座位数", Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationRoomSetting/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } })
  • 监考员:
  • @Html.ComboGrid(new ComboGridOptions { TextField = "Name", ValueField = "UserID", OnSelect = "reload", ID = "cbgExaminationTeacher", GridOptions = new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="UserID" }, new LinkButtonColumn { FieldName="StaffCode", HeaderText="教职工号", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="Name", HeaderText="姓名", Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationTeacher/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } })
  • 班主任:
  • @Html.ComboGrid(new ComboGridOptions { TextField = "Name", ValueField = "UserID", OnSelect = "reload", ID = "cbgAssistant", GridOptions = new DataGridOptions { Columns = new List() { new LinkButtonColumn { FieldName="StaffCode", HeaderText="教职工号", Width=0.1, Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="Name", HeaderText="姓名", Width=0.3, Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Staff/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } })
  • 状态:
  • @Html.DictionaryDropDownList((EMIS.ViewModel.DictionaryItem.EX_ExaminationPlanStatus), new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationPlanStatus", Name = "ddlExaminationPlanStatus", OnSelect = "reload" })