@using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "ClassStudentListView"; Guid? facultymajorID = new Guid(Request["facultymajorID"]); int? inschoolstatus = Convert.ToInt32(Request["inschoolstatus"] == null ? "-1" : Request["inschoolstatus"]); } @section scripts{ }
@Html.PositionCondition("FacultymajorStudent")
  • 年级:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Grade, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryGrade", Name = "DictionaryGrade", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentList" } })
  • 入学学期:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Semester, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionarySemester", Name = "DictionarySemester", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentList" } })
  • 在校状态:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_INOrOutSchoolStatus, new DropdownListOptions { ID = "DictionaryInschoolStatus", Name = "DictionaryInschoolStatus", BindType = DropdownListBindType.SelectAll, OnSelect = "reload", SelectedValue = (int)inschoolstatus }, new Dictionary { { "data-condition", "dgStudentList" } })
@Html.ContextMenuBar("StuDetail")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="UserID" }, new BoundFieldColumn { FieldName="LoginID", HeaderText="学号", Align=AlignStyle.Center, Width=0.08 }, new BoundFieldColumn { FieldName="UserName", HeaderText="姓名", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="SexName", HeaderText="性别", Align=AlignStyle.Center, OrderFieldName="SexID", Width=0.02 }, new BoundFieldColumn { FieldName="GradeID", HeaderText="年级", Align=AlignStyle.Center, OrderFieldName="GradeID", Width=0.03, CustomFormatFun="SetRedColumn" }, //new BoundFieldColumn { FieldName="GrademajorName", HeaderText="年级专业名称", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="SemesterName", HeaderText="入学学期", Align=AlignStyle.Center, OrderFieldName="SemesterID", Width=0.04 }, new BoundFieldColumn { FieldName="ClassmajorName", HeaderText="班级名称", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="InSchoolStatusName", HeaderText="在校状态", Align=AlignStyle.Center, OrderFieldName="InSchoolStatusID", Width=0.04, CustomFormatFun="SetRedColumn" }, new BoundFieldColumn { FieldName="StudentStatusName", HeaderText="学籍状态", Align=AlignStyle.Center, OrderFieldName="StudentStatus", Width=0.04 } }, IsPostBack = true, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Facultymajor/ClassStudentListView?facultymajorID=" + facultymajorID), ID = "dgStudentList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })