@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "PersonalList"; ComboGridOptions ddCollege = new ComboGridOptions { TextField = "Name", ValueField = "CollegeID", Name = "DDCollegeDropdown", ID = "DDCollegeDropdown", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/College/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; } @section scripts{ }
@Html.Position()
查询条件
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.None, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), SelectedValue = BaseExtensions.GetCurrentSchoolYearID(), ID = "SchoolYearDropdown", Name = "SchoolYearDropdown" })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.ComboGrid(ddCollege)
  • 月份:
  • @Html.TextBox(new TextBoxOptions { ID = "txtDate", Name = "txtDate" })
  • 至:
  • @Html.TextBox(new TextBoxOptions { ID = "txtEndDate", Name = "txtEndDate" })
  • @Html.Button(new ButtonOptions { OnClick = "Report_Search()", Icon = ButtonIcon.Search, Text = "查询" })