@using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; //ComboGridOptions cgopExaminationBatch = new ComboGridOptions //{ // TextField = "Name", // ValueField = "ExaminationBatchID", // ID = "cgExaminationBatch", // Name = "cgExaminationBatch", // OnSelect = "queryProject", // GridOptions = new DataGridOptions // { // Columns = new List() // { // new BoundFieldColumn { FieldName="Name", HeaderText="考试批次", Align=AlignStyle.Center } // }, // OnLoadSuccessFun = "reload", // IsCheckOnSelect = true, // DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetExaminationBatchViewGrid"), // IsPagination = true, // IsShowRowNumbers = true, // IsSingleSelect = false, // } //}; //ComboGridOptions cgopExaminationType = new ComboGridOptions //{ // TextField = "Name", // ValueField = "ExaminationTypeID", // Name = "cgExaminationType", // ID = "cgExaminationType", // OnSelect = "queryProject", // GridOptions = new DataGridOptions // { // Columns = new List() // { // new BoundFieldColumn { FieldName="Name", HeaderText="考试类型", Align=AlignStyle.Center } // }, // IsCheckOnSelect = true, // DataSourceUrl = Url.Content("~/ExaminationType/List"), // IsPagination = true, // IsShowRowNumbers = true, // IsSingleSelect = false // } //}; //ComboGridOptions cgopExaminationProject = new ComboGridOptions //{ // TextField = "Name", // ValueField = "ExaminationProjectID", // Name = "cgExaminationProject", // ID = "cgExaminationProject", // OnSelect = "reload", // GridOptions = new DataGridOptions // { // Columns = new List() // { // new BoundFieldColumn { FieldName="Name", HeaderText="项目名称", Align=AlignStyle.Center } // }, // IsCheckOnSelect = true, // DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetProjectListViewGrid"), // IsPagination = true, // IsShowRowNumbers = true, // IsSingleSelect = false // } //}; ComboGridOptions cgopExaminationBatch = new ComboGridOptions { TextField = "Name", ValueField = "ExaminationBatchID", ID = "cgExaminationBatch", Name = "cgExaminationBatch", OnSelect = "queryBatch", //IsEnabled = false, GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="考试批次", Align=AlignStyle.Center, Width = 0.3 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetExaminationBatchViewGrid"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, //OnLoadSuccessFun = "queryBatch", } }; ComboGridOptions cgopExaminationType = new ComboGridOptions { TextField = "Name", ValueField = "ExaminationTypeID", Name = "cgExaminationType", ID = "cgExaminationType", OnSelect = "queryType", //IsEnabled = false, GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="考试类型", Align=AlignStyle.Center, Width = 0.3 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetExaminationTypeViewGrid"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, //OnLoadSuccessFun = "queryType", } }; ComboGridOptions cgopExaminationProject = new ComboGridOptions { TextField = "Name", ValueField = "ExaminationProjectID", Name = "cgExaminationProject", ID = "cgExaminationProject", OnSelect = "reload", //IsEnabled = false, GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="项目名称", Align=AlignStyle.Center, Width = 0.3 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetProjectListViewGrid"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, //OnLoadSuccessFun = "queryProject", } }; ComboGridOptions cgopCampus = new ComboGridOptions { TextField = "Name", ValueField = "CampusID", ID = "cgCampus", Name = "cgCampus", OnSelect = "queryCollege", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CampusName"), Align=AlignStyle.Center } }, OnLoadSuccessFun = "reload", IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Campus/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; ComboGridOptions cgopCollege = new ComboGridOptions { TextField = "Name", ValueField = "CollegeID", ID = "cgCollege", Name = "cgCollege", OnSelect = "queryClassmajor", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center } }, //OnLoadSuccessFun = "reload", IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/College/ListOnlyCollege"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; ComboGridOptions cgopStandard = new ComboGridOptions { TextField = "StandardName", ValueField = "StandardID", OnSelect = "queryClassmajor", Name = "DictionaryStandard", ID = "DictionaryStandard", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="StandardName", HeaderText="专业名称", Align=AlignStyle.Center, Width=0.1 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Grademajor/GrademajorBindComboGridOptions"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } }; ComboGridOptions cgopClassmajor = new ComboGridOptions { TextField = "Name", ValueField = "ClassmajorID", Name = "cgClassmajor", ID = "cgClassmajor", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="班级名称", Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Classmajor/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } }; } @section scripts{ }
@Html.Position()
@Html.PositionCondition()
@Html.Hidden("SelectedID")
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), ID = "ddlSchoolyear", Name = "ddlSchoolyear", OnSelect = "querySchoolYear", OnLoadSuccess = "querySchoolYear", SelectedValue = BaseExtensions.GetCurrentSchoolYearID() }, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
  • 考试批次:
  • @Html.ComboGrid(cgopExaminationBatch, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
  • 考试类型:
  • @Html.ComboGrid(cgopExaminationType, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
  • 项目名称:
  • @Html.ComboGrid(cgopExaminationProject, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
@*
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), ID = "ddlSchoolyear", Name = "ddlSchoolyear", OnSelect = "schoolyearChange", SelectedValue = BaseExtensions.GetCurrentSchoolYearID(), OnLoadSuccess = "schoolyearChange" }, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
  • 考试批次:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationBatch", Name = "ddlExaminationBatch", OnSelect = "examinationBatchChange", OnLoadSuccess = "examinationBatchChange" }, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
  • 考试类型:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationType", Name = "ddlExaminationType", OnSelect = "examinationTypeChange", OnLoadSuccess = "examinationTypeChange" }, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
  • 项目名称:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationProject", Name = "ddlExaminationProject", OnSelect = "reload", }, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
*@
  • 校区:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_SchoolArea, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlSchoolArea", Name = "ddlSchoolArea", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.ComboGrid(cgopCollege, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
  • 年级:
  • @Html.SchoolYearDropDownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlYear", Name = "ddlYear", OnSelect = "queryClassmajor" }, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
  • 专业:
  • @Html.ComboGrid(cgopStandard, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
  • 班级名称:
  • @Html.ComboGrid(cgopClassmajor, new Dictionary { { "data-condition", "dgExaminationScoreList" } })
项目成绩
@Html.ContextMenuBar("List")
@Html.PositionBatchModify()
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="ExaminationScoreID",Width=0.05}, new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center,Width=0.04}, new BoundFieldColumn { FieldName="ExaminationBatchName", HeaderText="考试批次", Align=AlignStyle.Center,Width=0.04}, new BoundFieldColumn { FieldName="ExaminationTypeName", HeaderText="考试类型", Align=AlignStyle.Center,Width=0.04}, new BoundFieldColumn { FieldName="ExaminationProjectName", HeaderText="考试项目", Align=AlignStyle.Center,Width=0.08 }, new BoundFieldColumn { FieldName="ExaminationSubjectName", HeaderText="科目考核项", Align=AlignStyle.Center,Width=0.03}, new BoundFieldColumn { FieldName="SchoolAreaName", HeaderText="校区", Align=AlignStyle.Center,Width=0.05 }, new BoundFieldColumn { FieldName="CollegeName", HeaderText="院系", Align=AlignStyle.Center,Width=0.08 }, new BoundFieldColumn { FieldName="SchoolyearNumID", HeaderText="年级", Align=AlignStyle.Center,Width=0.03 }, new BoundFieldColumn { FieldName="StandardName", HeaderText="专业", Align=AlignStyle.Center,Width=0.08 }, new BoundFieldColumn { FieldName="ClassmajorName", HeaderText="班级", Align=AlignStyle.Center,Width=0.08 }, new BoundFieldColumn { FieldName="UserName", HeaderText="姓名", Align=AlignStyle.Center,Width=0.03 }, new BoundFieldColumn { FieldName="CertificatesTypeName", HeaderText="证件类型", Align=AlignStyle.Center,Width=0.05 }, new BoundFieldColumn { FieldName="IDNumber", HeaderText="证件号码", Align=AlignStyle.Center,Width=0.12 }, new BoundFieldColumn { FieldName="Score", HeaderText="成绩", Align=AlignStyle.Center, Width=0.02 }, new BoundFieldColumn { FieldName="Expire", HeaderText="有效日期", Align=AlignStyle.Center, Width=0.04, Formatter=Formatter.OnlyYearMonthDay}, new BoundFieldColumn { FieldName="Remark", HeaderText="备注", Align=AlignStyle.Center, Width=0.02}, }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationScore/List"), ID = "dgExaminationScoreList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })