@using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; ComboGridOptions cgopExamType = new ComboGridOptions { TextField = "Name", ValueField = "ExaminationTypeID", ID = "ExaminationTypeID", Name = "ExaminationTypeID", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="考试类型名称", Align=AlignStyle.Center ,Width=0.4}, }, PageSize = 5, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ChargeProject/GetExaminationTypeList"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false }, OnSelect = "cgopExamTypeSelect" }; ComboGridOptions cgopProject = new ComboGridOptions { TextField = "Name", ValueField = "ExaminationProjectID", ID="ExaminationProjectID", Name="ExaminationProjectID", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="项目名称", Align=AlignStyle.Center ,Width=0.2} }, PageSize = 5, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ChargeProject/GetProjectListViewGrid"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false }, Width = 400, OnSelect = "reload" }; } @section scripts{ }
@Html.Position()
查询条件
@Html.Hidden("SelectedID") @Html.PositionCondition()
  • 考试类型:
  • @Html.ComboGrid(cgopExamType, new Dictionary { { "data-condition", "dgChargeProjectList" } })
  • 项目名称:
  • @Html.ComboGrid(cgopProject, new Dictionary { { "data-condition", "dgChargeProjectList" } })
收费项目信息列表
@Html.ContextMenuBar("List")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="ExaminationProjectFeeID"}, new BoundFieldColumn { FieldName="ExaminationType", HeaderText="考试类型", Align=AlignStyle.Center, Width=0.06 }, new LinkButtonColumn { FieldName="ProjectName", HeaderText="项目名称", Align=AlignStyle.Center, Width=0.1, Handle="edit" }, new BoundFieldColumn { FieldName="Name", HeaderText="收费标准名称", Align=AlignStyle.Center, Width=0.1 }, }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ChargeProject/GetProjectFeeListViewGrid"), ID = "dgChargeProjectList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, IsPostBack=true })