@using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; } @section scripts{ }
@Html.Position()
@Html.PositionCondition()
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), ID = "ddlSchoolyear", Name = "ddlSchoolyear", OnSelect = "reload", SelectedValue = BaseExtensions.GetCurrentSchoolYearID() }, new Dictionary { { "data-condition", "dgProjectScoreList" } })
  • 考试类型:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationType", Name = "ddlExaminationType", ItemSourceUrl = Url.Content("~/ChargeProject/ExaminationTypeDropdownList"), OnSelect = "examinationTypeChange", OnLoadSuccess = "examinationTypeChange" }, new Dictionary { { "data-condition", "dgProjectScoreList" } })
  • 项目名称:
  • @Html.ComboGrid(new ComboGridOptions { TextField = "Name", ValueField = "ExaminationProjectID", Name = "cgbExaminationProject", ID = "cgbExaminationProject", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="项目名称", Align=AlignStyle.Center } }, OnLoadSuccessFun = "examinationProjectLoaded", IsAutoLoad = false, DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetProjectListViewGrid"), IsPagination = true } }, new Dictionary { { "data-condition", "dgProjectScoreList" } })
  • 校区:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_SchoolArea, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlSchoolArea", Name = "ddlSchoolArea", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgProjectScoreList" } })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlCollege", Name = "ddlCollege", OnSelect = "collegeSelect", OnLoadSuccess = "collegeChange" }, new Dictionary { { "data-condition", "dgProjectScoreList" } })
  • 年级:
  • @Html.SchoolYearDropDownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlYear", Name = "ddlYear", OnSelect = "collegeSelect" }, new Dictionary { { "data-condition", "dgProjectScoreList" } })
  • 专业:
  • @Html.ComboGrid(new ComboGridOptions { GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="StandardName", HeaderText="专业", Align=AlignStyle.Center } }, OnLoadSuccessFun = "standardChange", IsAutoLoad = false, DataSourceUrl = Url.Content("~/Grademajor/StandardList"), IsPagination = true }, TextField = "StandardName", ValueField = "StandardID", Name = "cgbStandard", ID = "cgbStandard", OnSelect = "standardSelect" }, new Dictionary { { "data-condition", "dgProjectScoreList" } })
  • 班级:
  • @Html.ComboGrid(new ComboGridOptions { TextField = "Name", ValueField = "ClassmajorID", Name = "cgbClassmajor", ID = "cgbClassmajor", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="班级名称", Align=AlignStyle.Center } }, IsAutoLoad = false, DataSourceUrl = Url.Content("~/Classmajor/List"), IsPagination = true } }, new Dictionary { { "data-condition", "dgProjectScoreList" } })
  • 是否参与培训:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlIsTrain", Name = "ddlIsTrain", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgProjectScoreList" } })
项目认定成绩列表
@Html.ContextMenuBar("List")
@Html.PositionBatchModify()
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="ProjectScoreID"}, new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="CollegeName", HeaderText=EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="Year", HeaderText="年级", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="StandardName", HeaderText="专业", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="ClassmajorName", HeaderText="班级", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="UserName", HeaderText="姓名", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="CertificatesTypeName", HeaderText="证件类型", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="IDNumber", HeaderText="证件号码", Align=AlignStyle.Center, Width=150 }, new BoundFieldColumn { FieldName="ExaminationTypeName", HeaderText="考试类型", Align=AlignStyle.Center }, new LinkButtonColumn { FieldName="ExaminationProjectName", HeaderText="考试项目", Align=AlignStyle.Center, Handle="showDetail" }, new BoundFieldColumn { FieldName="LevelName", HeaderText="成绩等级", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="TrainingClassName", HeaderText="培训班名", Align=AlignStyle.Center, Width=150 } }, IsAutoLoad = false, DataSourceUrl = Url.Content("~/ProjectScore/List"), ID = "dgProjectScoreList", IsPagination = true })