@model EMIS.ViewModel.SchedulingManage.SchedulingSettings.CollegeClassroomView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @using EMIS.Utility; @{ ViewBag.Title = "CollegeClassroomBatchAdd"; //校区 ComboGridOptions cgopBuildingsInfoCampus = new ComboGridOptions { TextField = "Name", ValueField = "CampusID", ID = "BuildingsInfoCampusDropdown", Name = "BuildingsInfoCampusDropdown", OnSelect = "queryBuildingsInfoCampus", 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 cgopBuildings = new ComboGridOptions { TextField = "Name", ValueField = "BuildingsInfoID", ID = "BuildingsDropdown", Name = "BuildingsDropdown", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new LinkButtonColumn { FieldName="Code", HeaderText="建筑编号", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="Name", HeaderText="建筑名称", Align=AlignStyle.Center, Width=0.1 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Buildings/list"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } }; //教室信息 ComboGridOptions cgopClassroomName = new ComboGridOptions { TextField = "Name", ValueField = "Name", ID = "ClassroomNameDropdown", Name = "ClassroomNameDropdown", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { //new LinkButtonColumn { FieldName="Code", HeaderText="教室编号", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="Name", HeaderText="教室名称", Align=AlignStyle.Center, Width=0.1 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Classroom/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; //院系所 ComboGridOptions cgopCollege = new ComboGridOptions { TextField = "Name", ValueField = "CollegeID", ID = "CollegeDropdown", Name = "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"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { //生成成功后不关闭弹出页面(OnSuccess = "EMISFunction.FormSuccessNoClose") OnSuccess = "formSuccessReloadNoClose", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
查询条件
@Html.PositionCondition("CollegeClassroomSelect")
  • @EMIS.Utility.RSL.Get("Campus"):
  • @Html.ComboGrid(cgopBuildingsInfoCampus, new Dictionary { { "data-condition", "dgCollegeClassroomNoAddList" } })
  • 所在建筑:
  • @Html.ComboGrid(cgopBuildings, new Dictionary { { "data-condition", "dgCollegeClassroomNoAddList" } })
  • 教室名称:
  • @Html.ComboGrid(cgopClassroomName, new Dictionary { { "data-condition", "dgCollegeClassroomNoAddList" } })
  • 教室类型:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_ClassroomType, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "ClassroomTypeDictionary", Name = "ClassroomTypeDictionary", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgCollegeClassroomNoAddList" } })
  • 多班教学:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions() { BindType = DropdownListBindType.SelectAll, ID = "IsConcurrentUseDropdown", Name = "IsConcurrentUseDropdown", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgCollegeClassroomNoAddList" } })
  • 是否预留:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions() { BindType = DropdownListBindType.SelectAll, ID = "IsReserveDropdown", Name = "IsReserveDropdown", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgCollegeClassroomNoAddList" } })
  • 是否可用:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions() { BindType = DropdownListBindType.SelectAll, ID = "IsAvailableDropdown", Name = "IsAvailableDropdown", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgCollegeClassroomNoAddList" } })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.ComboGrid(cgopCollege, new Dictionary { { "data-condition", "dgCollegeClassroomNoAddList" } })
教室院系列表
@Html.ContextMenuBar("BatchAdd")
@Html.Hidden("collegeClassroomViewList")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="CollegeClassroomID" }, new BoundFieldColumn { FieldName="ClassroomCode", HeaderText="教室编号", Align=AlignStyle.Center, Width=0.06 }, new BoundFieldColumn { FieldName="ClassroomName", HeaderText="教室名称", Align=AlignStyle.Center, Width=0.1 }, //new BoundFieldColumn { FieldName="ClassroomCollegeName", HeaderText=@EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center, Width=0.06, OverflowLength=6, CustomFormatFun="SetRedColumn" }, new BoundFieldColumn { FieldName="BuildingsInfoName", HeaderText="建筑名称", Align=AlignStyle.Center, Width=0.06, OverflowLength=6 }, //new BoundFieldColumn { FieldName="CampusName", HeaderText=@EMIS.Utility.RSL.Get("Campus"), Align=AlignStyle.Center, Width=0.04, OverflowLength=4 }, new BoundFieldColumn { FieldName="ClassroomTypeName", HeaderText="教室类型", Align=AlignStyle.Center, OrderFieldName="", Width=0.08, OverflowLength=8 }, new BoundFieldColumn { FieldName="RoomUseName", HeaderText="房间用途", Align=AlignStyle.Center, OrderFieldName="RoomUseID", Width=0.05, OverflowLength=5 }, new BoundFieldColumn { FieldName="Totalseating", HeaderText="总座位数", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="Effectiveseating", HeaderText="有效座位数", Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="IsConcurrentUseName", HeaderText="多班教学", Align=AlignStyle.Center, OrderFieldName="IsConcurrentUse", Width=0.04 }, new BoundFieldColumn { FieldName="IsReserveName", HeaderText="是否预留", Align=AlignStyle.Center, OrderFieldName="IsReserve", Width=0.04 }, new BoundFieldColumn { FieldName="IsAvailableName", HeaderText="是否可用", Align=AlignStyle.Center, OrderFieldName="IsAvailable", Width=0.04, CustomFormatFun="SetRedColumn" }, //new BoundFieldColumn { FieldName="CollegeNo", HeaderText=@EMIS.Utility.RSL.Get("CollegeCode"), Align=AlignStyle.Center, Width=0.06 }, new BoundFieldColumn { FieldName="CollegeName", HeaderText=@EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center, Width=0.1 } //new BoundFieldColumn { FieldName="UnitCategoryName", HeaderText="单位类别", Align=AlignStyle.Center, OrderFieldName="UnitCategoryID", Width=0.05 }, //new BoundFieldColumn { FieldName="CollegeCampusName", HeaderText=@EMIS.Utility.RSL.Get("Campus"), Align=AlignStyle.Center, Width=0.04, OverflowLength=4 } }, CustomerRowStyleFun = "SetRedGrid", IsCheckOnSelect = true, //IsAutoLoad = false, DataSourceUrl = Url.Content("~/CollegeClassroom/CollegeClassroomNoAddList"), ID = "dgCollegeClassroomNoAddList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })
}