@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; ComboGridOptions optCreateCollege = new ComboGridOptions { TextField = "Name", ValueField = "CollegeID", Name = "cgbCreateCollege", ID = "cgbCreateCollege", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center, Width=0.2 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/College/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; } @section scripts{ }
@Html.Position()
查询条件
@Html.PositionCondition()
  • 文件类型:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.SUP_DocumentType, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, Name = "DocumentType", ID = "DocumentType", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgSupDocumentList" } })
  • 发布部门:
  • @Html.ComboGrid(optCreateCollege, new Dictionary { { "data-condition", "dgSupDocumentList" } })
督导文件
@Html.ContextMenuBar("List")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn { FieldName="DocumentID", Align=AlignStyle.Center }, new BoundFieldColumn { FieldName="Title", HeaderText="标题", Align=AlignStyle.Center, Width=250, }, new BoundFieldColumn { FieldName="DocumentTypeDesc", HeaderText="文件类型", Align=AlignStyle.Center, Width=60 }, new BoundFieldColumn { FieldName="CreateCollegeName", HeaderText="发布人部门", Align=AlignStyle.Center, Width=100 }, new BoundFieldColumn { FieldName="CreateUserName", HeaderText="发布人", Align=AlignStyle.Center, Width=50 }, new BoundFieldColumn { FieldName="CreateTime", HeaderText="发布时间", Align=AlignStyle.Center, Width=60, Formatter=Formatter.OnlyYearMonthDay }, new LinkButtonColumn { FieldName="Download", HeaderText="操作", Align=AlignStyle.Center, Width=40, Handle="Download" }, }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/SupDocument/List"), ID = "dgSupDocumentList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })