@model EMIS.ViewModel.Students.StudentRecordView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Edit"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) { @Html.Position()
学生详细信息
@Html.ContextMenuBar("Edit")
@Html.HiddenFor(x => x.UserID)
报名注意事项:如果下述显示信息和自己的真实信息不符,请退出重新登录,或报告管理教师!(请同学们认真检查证件号码是否正确!)
@Html.LabelFor(x => x.UserName): @Model.UserName @Html.LabelFor(x => x.Sex): @Html.DictionaryItemName(Model.Sex, "CF_Sex")
@Html.LabelFor(x => x.CollegeName): @Model.CollegeName @Html.LabelFor(x => x.GradeName): @Model.GradeName
@Html.LabelFor(x => x.ClassName): @Model.ClassName @Html.LabelFor(x => x.CertificatesType): @Html.DictionaryItemName(Model.CertificatesType, "CF_CertificatesType")
@Html.LabelFor(x => x.IDNumber): @Model.IDNumber @Html.LabelFor(x => x.Mobile): @Model.Mobile
考试科目列表
@Html.ContextMenuBar("List")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="ExaminationBatchProjectID", Width=0.01, CustomFormatFun="" }, new BoundFieldColumn { FieldName="ExaminationProjectName", HeaderText="考试项目", Align=AlignStyle.Center, Width=0.12 }, new BoundFieldColumn { FieldName="StartDate", HeaderText="开始报名日期", Align=AlignStyle.Center, Formatter= Formatter.CHSOnlyYearMonthDay, Width=0.08 }, new BoundFieldColumn { FieldName="EndDate", HeaderText="截止报名日期", Align=AlignStyle.Center, Formatter= Formatter.CHSOnlyYearMonthDay, Width=0.08 }, new BoundFieldColumn { FieldName="SimulateTime", HeaderText="预考试时间", Align=AlignStyle.Center, Width=0.08 }, new BoundFieldColumn { FieldName="Training", HeaderText="培训情况", Align=AlignStyle.Center, Width=0.08 }, new BoundFieldColumn { FieldName="TakeCourseTime", HeaderText="预开课时间", Align=AlignStyle.Center, Width=0.08 }, //new BoundFieldColumn { FieldName="MaxRegistCount", HeaderText="最大可报人数", Align=AlignStyle.Center, Width=0.05 }, //new BoundFieldColumn { FieldName="RegisterNum", HeaderText="已选人数", Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="Remark", HeaderText="报考要求", Align=AlignStyle.Center, Width=0.2 }, new BoundFieldColumn { FieldName="BatchRemark", HeaderText="备注", Align=AlignStyle.Center, Width=0.2 }, new BoundFieldColumn { FieldName="FeeTypeListStr", HeaderText="费用列", Align=AlignStyle.Center, Width=0.2 }, }, CustomerRowStyleFun = "", //CustomerRowStyleFun = "CheckIsRister1", //OnLoadSuccessFun = "CheckIsRister1", IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExamineApply/GetExaminationSubjectList"), ID = "dgCourseScheduleSettingList", IsPagination = false, IsShowRowNumbers = true, IsSingleSelect = false })
@*
已报名考试科目列表
@Html.ContextMenuBar("List2")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="ExaminationRegistrationID" }, new BoundFieldColumn { FieldName="SchoolYearCode", HeaderText="学年学期", Align=AlignStyle.Center, Width=0.08}, new BoundFieldColumn { FieldName="ExaminationProjectName", HeaderText="考试项目", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="CertificatesTypeName", HeaderText="证件类型", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="IDNumber", HeaderText="证件号", Align=AlignStyle.Center, Width=0.12 }, new BoundFieldColumn { FieldName="FeeTypeAndFee", HeaderText="报名项目(费用)", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="Remark", HeaderText="报考要求", Align=AlignStyle.Center, Width=0.2 }, new BoundFieldColumn { FieldName="RecordStatusStr", HeaderText="缴费状态", Align=AlignStyle.Center, Width=0.04 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExamineApply/GetExaminationRegisterList"), ID = "dgUserGrade", IsPagination = false, IsShowRowNumbers = true, IsSingleSelect = false })
*@
}