@using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "StaffList"; Guid? userID = new Guid(Request["userID"]); //角色信息 ComboGridOptions cgopRole = new ComboGridOptions { TextField = "RoleName", ValueField = "RoleID", ID = "RoleDropdown", Name = "RoleDropdown", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { //new LinkButtonColumn { FieldName="OrderNo", HeaderText="序号", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="RoleName", HeaderText="角色名称", Align=AlignStyle.Center, Width=0.2 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Role/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } }; } @section scripts{ }
@Html.PositionCondition("StaffRole")
  • 角色名称:
  • @Html.ComboGrid(cgopRole, new Dictionary { { "data-condition", "dgRoleList" } })
  • 数据范围:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.SYS_DataRange, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryDataRange", Name = "DictionaryDataRange", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgRoleList" } })
  • 角色状态:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.SYS_STATUS, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryRoleStatus", Name = "DictionaryRoleStatus", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgRoleList" } })
@Html.ContextMenuBar("RoleDetail")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="UserID" }, new BoundFieldColumn { FieldName="LoginID", HeaderText="教职工号", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="Name", HeaderText="姓名", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="SexName", HeaderText="性别", Align=AlignStyle.Center, OrderFieldName="SexID", Width=0.02 }, //new BoundFieldColumn { FieldName="BirthDate", HeaderText="出生日期", Align=AlignStyle.Center, Width=0.05, Formatter = Formatter.OnlyYearMonthDay }, //new BoundFieldColumn { FieldName="NationName", HeaderText="民族", Align=AlignStyle.Center, OrderFieldName="NationID", Width=0.03 }, //new BoundFieldColumn { FieldName="TeacherTypeName", HeaderText="教师类型", Align=AlignStyle.Center, OrderFieldName="TeacherTypeID", Width=0.04 }, //new BoundFieldColumn { FieldName="IncumbencyStateName", HeaderText="在职状态", Align=AlignStyle.Center, OrderFieldName="IncumbencyState", Width=0.04 }, //new BoundFieldColumn { FieldName="TitleName", HeaderText="职称", Align=AlignStyle.Center, OrderFieldName="TitleID", Width=0.04 }, //new BoundFieldColumn { FieldName="OfficeTelephone", HeaderText="办公电话", Align=AlignStyle.Center, Width=0.065 }, //new BoundFieldColumn { FieldName="Mobile", HeaderText="移动电话", Align=AlignStyle.Center, Width=0.06 }, //new BoundFieldColumn { FieldName="PhotoHasValueName", HeaderText="照片", Align=AlignStyle.Center, OrderFieldName="PhotoHasValue", Width=0.02 }, //new BoundFieldColumn { FieldName="CampusCode", HeaderText=@EMIS.Utility.RSL.Get("CampusCode"), Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="CampusName", HeaderText=@EMIS.Utility.RSL.Get("Campus"), Align=AlignStyle.Center, Width=0.06, OverflowLength=6 }, //new BoundFieldColumn { FieldName="CollegeNo", 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=10 }, //new BoundFieldColumn { FieldName="DepartmentCode", HeaderText="教研室代码", Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="DepartmentName", HeaderText="教研室", Align=AlignStyle.Center, Width=0.08, OverflowLength=10 }, new BoundFieldColumn { FieldName="RoleOrderNo", HeaderText="角色序号", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="RoleName", HeaderText="角色名称", Align=AlignStyle.Center, Width=0.05, OverflowLength=6 }, //new BoundFieldColumn { FieldName="TypeName", HeaderText="角色类型", Align=AlignStyle.Center, OrderFieldName="TypeID", Width=0.04 }, new BoundFieldColumn { FieldName="DataRangeName", HeaderText="数据范围", Align=AlignStyle.Center, OrderFieldName="DataRange", Width=0.04 }, new BoundFieldColumn { FieldName="RoleStatusName", HeaderText="角色状态", Align=AlignStyle.Center, OrderFieldName="RoleStatus", Width=0.04, CustomFormatFun="SetRedColumn" }, new BoundFieldColumn { FieldName="Remark", HeaderText="备注", Align=AlignStyle.Center, Width=0.03, OverflowLength=5 } }, IsPostBack = true, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Staff/RoleList?userID=" + userID), ID = "dgRoleList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })