@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; //校区 ComboGridOptions cgopCampus = new ComboGridOptions { TextField = "Name", ValueField = "CampusID", Name = "CampusDropdown", ID = "CampusDropdown", OnSelect = "queryCampus", GridOptions = new DataGridOptions { Columns = new List() { //new LinkButtonColumn { FieldName="No", HeaderText=@EMIS.Utility.RSL.Get("CampusCode"), Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CampusName"), Align=AlignStyle.Center, Width=0.12 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Campus/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; //院系所 ComboGridOptions cgopCollege = new ComboGridOptions { TextField = "Name", ValueField = "CollegeID", Name = "CollegeDropdown", ID = "CollegeDropdown", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { //new LinkButtonColumn { FieldName="No", HeaderText=@EMIS.Utility.RSL.Get("CollegeCode"), Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center, Width=0.2 } }, IsCheckOnSelect = true, //DataSourceUrl = Url.Content("~/College/ListOnlyCollege"), DataSourceUrl = Url.Content("~/College/ListWithoutRange"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; } @section scripts{ }
@Html.Position()
查询条件
@Html.PositionCondition()
  • @EMIS.Utility.RSL.Get("Campus"):
  • @Html.ComboGrid(cgopCampus, new Dictionary { { "data-condition", "dgBuildingsList" } })
  • 建筑类型:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_BuildingsType, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryBuildingsType", Name = "DictionaryBuildingsType", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgBuildingsList" } })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.ComboGrid(cgopCollege, new Dictionary { { "data-condition", "dgBuildingsList" } })
  • 是否可用:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions() { ID = "IsSpecialDropdown", Name = "IsSpecialDropdown", BindType = DropdownListBindType.SelectAll, OnSelect = "reload" }, new Dictionary { { "data-condition", "dgBuildingsList" } })
建筑信息列表
@Html.ContextMenuBar("List")
@Html.PositionBatchModify()
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="BuildingsInfoID" }, new LinkButtonColumn { FieldName="Code", HeaderText="建筑编号", Align=AlignStyle.Center, Handle="edit", Width=0.05 }, new BoundFieldColumn { FieldName="Name", HeaderText="建筑名称", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="CampusName", HeaderText=@EMIS.Utility.RSL.Get("Campus"), Align=AlignStyle.Center, Width=0.06, OverflowLength=6 }, new BoundFieldColumn { FieldName="BuildingsTypeName", HeaderText="建筑类型", Align=AlignStyle.Center, OrderFieldName="BuildingsTypeID", Width=0.04 }, new BoundFieldColumn { FieldName="BuildingsStatusName", HeaderText="建筑状况", Align=AlignStyle.Center, OrderFieldName="BuildingsStatusID", Width=0.04 }, new BoundFieldColumn { FieldName="BuildingsLevel", HeaderText="建筑层数", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="BuildingsArea", HeaderText="建筑面积", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="UseArea", HeaderText="使用面积", Align=AlignStyle.Center, Width=0.04 }, //new BoundFieldColumn { FieldName="CollegeCode", HeaderText=@EMIS.Utility.RSL.Get("CollegeCode"), Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="CollegeName", HeaderText=@EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center, Width=0.08, OverflowLength=8, CustomFormatFun="SetRedColumn" }, //new BoundFieldColumn { FieldName="CollegeCampusName", HeaderText=@EMIS.Utility.RSL.Get("Campus"), Align=AlignStyle.Center, Width=0.06, OverflowLength=6, CustomFormatFun="SetRedColumn" }, new LinkButtonColumn { FieldName="ClassroomCount", HeaderText="教室间数", Align=AlignStyle.Center, Handle="editClassroomCount", Width=0.04 }, new BoundFieldColumn { FieldName="IsSpecialName", HeaderText="是否可用", Align=AlignStyle.Center, OrderFieldName="IsSpecial", Width=0.04, CustomFormatFun="SetRedColumn" } }, CustomerRowStyleFun = "SetRedGrid", IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Buildings/List"), ID = "dgBuildingsList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })