12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @using Bowin.Common.Utility;
- @{
- ViewBag.Title = "List";
- Guid? userID = Request.QueryString["userID"].ParseStrTo<Guid>();
- Guid? schoolyearID = Request.QueryString["schoolyearID"].ParseStrTo<Guid>();
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position:relative;">
- @using (Html.BeginForm())
- {
- <div class="p_title">
- <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
- 重修明细</div>
- </div>
- <div class="search_list">
- @Html.DataGrid(new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new CheckBoxFieldColumn{ HeaderText="", FieldName="RetakePlanStudentID" },
- new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center, Width=100 },
- new BoundFieldColumn { FieldName="LoginID", HeaderText="学号", Align=AlignStyle.Center, Width=100 },
- new BoundFieldColumn { FieldName="UserName", HeaderText="姓名", Align=AlignStyle.Center, Width=60 },
- new BoundFieldColumn { FieldName="CollegeName", HeaderText="教学点", Align=AlignStyle.Center, Width=100 },
- new BoundFieldColumn { FieldName="Gradeyear", HeaderText="年级", Align=AlignStyle.Center, Width=50 },
- new BoundFieldColumn { FieldName="StandardDesc", HeaderText="专业", Align=AlignStyle.Center, Width=100 },
- new BoundFieldColumn { FieldName="ClassName", HeaderText="课程名称", Align=AlignStyle.Center, Width=200 },
- //new BoundFieldColumn { FieldName="NoPassCount", HeaderText="不及格门数", Align=AlignStyle.Center, Width=80 },
- new BoundFieldColumn { FieldName="IsNoArrearsDesc", HeaderText="是否已缴费", Align=AlignStyle.Center, Width=60 }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/RetakePlanPrescan/StudentDetail?userID=" + userID + "&schoolyearID=" + schoolyearID),
- ID = "dgEducationSchedulingClassStudentList",
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- })
- </div>
- }
- </div>
|