@using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "GrademajorList"; Guid? facultymajorID = new Guid(Request["facultymajorID"]); int? inschoolstatus = Convert.ToInt32(Request["inschoolstatus"]); } @section scripts{ }
@Html.PositionCondition("FacultymajorGrademajor")
@Html.ContextMenuBar("GrDetail")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="GrademajorID" }, new BoundFieldColumn { FieldName="Code", HeaderText="年级专业编号", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="Name", HeaderText="年级专业名称", Align=AlignStyle.Center, Width=0.15 }, new BoundFieldColumn { FieldName="SchoolyearID", HeaderText="年级", Align=AlignStyle.Center, Width=0.03, CustomFormatFun="SetRedColumn" }, new BoundFieldColumn { FieldName="SchoolcodeName", HeaderText="入学学期", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="GraduatingSemesterCode", HeaderText="毕业学期", Align=AlignStyle.Center, Width=0.08 }, new BoundFieldColumn { FieldName="StudentCount", HeaderText="人数", Align=AlignStyle.Center, Width=0.03, CustomFormatFun="SetRedColumn" } }, IsPostBack = true, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Facultymajor/GrademajorList?facultymajorID=" + facultymajorID + "&DictionaryInschoolStatus=" + inschoolstatus), ID = "dgGrademajorList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })