@using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; ComboGridOptions cgopExamType = new ComboGridOptions { TextField = "Code", ValueField = "SchoolYearID", ID = "SchoolYearID", Name = "SchoolYearID", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Code", HeaderText="学年学期", Align=AlignStyle.Center ,Width=0.2}, new BoundFieldColumn { FieldName="Years", HeaderText="学年", Align=AlignStyle.Center ,Width=0.2}, new BoundFieldColumn { FieldName="SchoolcodeName", HeaderText="学期", Align=AlignStyle.Center ,Width=0.2}, }, PageSize = 5, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/SchoolYear/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false }, SelectedValue = BaseExtensions.GetCurrentSchoolYearID(), OnChange="reload", OnSelect = "reload", }; } @section scripts{ }
@Html.Position()
查询条件
@Html.Hidden("SelectedID") @Html.PositionCondition()
  • 学年学期:
  • @Html.ComboGrid(cgopExamType, new Dictionary { { "data-condition", "dgList" } })
  • 报名起始时间:
  • @Html.TextBox(new TextBoxOptions { TextBoxType = TextBoxType.Date, Name = "StartDate", ID = "StartDate", OnSelect="reload"}, new Dictionary { { "data-condition", "dgList" } })
  • 报名结束时间:
  • @Html.TextBox(new TextBoxOptions { TextBoxType = TextBoxType.Date, Name = "EndDate", ID = "EndDate", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgList" } })
  • 备注:
  • @Html.TextBox(new TextBoxOptions { Name = "Remark", ID = "Remark", }, new Dictionary { { "data-condition", "dgList" }, { "onchange", "reload()" } })
考试批次设置信息列表
@Html.ContextMenuBar("List")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="ExaminationProjectFeeID"}, new LinkButtonColumn { FieldName="Schoolyear", HeaderText="学年学期", Align=AlignStyle.Center, Width=0.06, Handle="edit" }, new BoundFieldColumn { FieldName="Name", HeaderText="考试批次", Align=AlignStyle.Center, Width=0.1}, new BoundFieldColumn { FieldName="StartDate", HeaderText="报名起始时间", Align=AlignStyle.Center, Width=0.1, Formatter= Formatter.CHSOnlyYearMonthDay }, new BoundFieldColumn { FieldName="EndDate", HeaderText="报名结束时间", Align=AlignStyle.Center, Width=0.1, Formatter= Formatter.CHSOnlyYearMonthDay }, new BoundFieldColumn { FieldName="Remark", HeaderText="备注", Align=AlignStyle.Center, Width=0.1 }, }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ExaminationBatch/GetProjectListViewGrid"), ID = "dgList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, IsPostBack = true })