@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; ComboGridOptions optCourse = new ComboGridOptions { TextField = "CourseName", ValueField = "CoursematerialID", OnSelect = "reload", ID = "cgbCourse", Name = "cgbCourse", SelectedIndex = 0, GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="CourseCode", HeaderText="课程代码", Align=AlignStyle.Center, Width=0.12 }, new BoundFieldColumn { FieldName="CourseName", HeaderText="课程名称", Align=AlignStyle.Center, Width=0.2 } }, IsAutoLoad = false, IsCheckOnSelect = true, OnLoadSuccessFun = "reload", DataSourceUrl = Url.Content("~/SOC/StudentCoursematerialList"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; } @section scripts{ }
@Html.Position()
查询条件
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.None, ItemSourceUrl = Url.Content("~/SchoolYear/YearsDropdownListBanid"), Name = "ddlSchoolyear", ID = "ddlSchoolyear", SelectedValue = BaseExtensions.GetCurrentSchoolYearID(), OnSelect = "queryCourse", OnLoadSuccess = "queryCourse" }, new Dictionary { { "data-condition", "dgSOCStudentList" } })
  • 课程名称:
  • @Html.ComboGrid(optCourse, new Dictionary { { "data-condition", "dgSOCStudentList" } })
  • 状态:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.DQP_SOCDetailSubmitStatus, new DropdownListOptions { Name = "DictionarySubmitStatus", BindType = DropdownListBindType.SelectAll, OnSelect = "reload" }, new Dictionary { { "data-condition", "dgSOCStudentList" } })
SOC列表
@Html.ContextMenuBar("List")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="SOCDetailID" }, new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center, Width=0.08 }, new BoundFieldColumn { FieldName="CourseCode", HeaderText="课程代码", Align=AlignStyle.Center, Width=0.06 }, new BoundFieldColumn { FieldName="CourseName", HeaderText="课程名称", Align=AlignStyle.Center, Width=0.1 }, new LinkButtonColumn { FieldName="Name", HeaderText="成果名称", Align=AlignStyle.Center, Width=0.06, Handle="showDetail" }, new BoundFieldColumn { FieldName="Credit", HeaderText="成果学分", Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="Weight", HeaderText="成果权重", Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="StartTime", HeaderText="开始上传时间", Align=AlignStyle.Center, Width=0.05, Formatter=Formatter.OnlyYearMonthDay }, new BoundFieldColumn { FieldName="EndTime", HeaderText="截止上传时间", Align=AlignStyle.Center, Width=0.05, Formatter=Formatter.OnlyYearMonthDay }, new LinkButtonColumn { FieldName="RecordStatusDesc", HeaderText="状态", Align=AlignStyle.Center, Width=0.05, Handle="remark" }, new BoundFieldColumn { FieldName="Remark", HeaderText="修改意见", Align=AlignStyle.Center, Width=0.12, IsHidden = true }, new LinkButtonColumn { HeaderText="", Align=AlignStyle.Center, Width=0.05, Handle="upload", Text="成果管理" } }, IsPostBack = true, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/SOC/StudentList"), ID = "dgSOCStudentList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })