@using Bowin.Web.Controls.Mvc;
@using EMIS.Web.Controls;
@{
ViewBag.Title = "GztyGraduationScoreView";
}
@section scripts{
}
@Html.ComboGrid(new ComboGridOptions
{
TextField = "Name",
ValueField = "ClassmajorID",
Name = "ddlClassmajor",
ID = "ddlClassmajor",
Width = 200,
GridOptions = new DataGridOptions
{
Columns = new List
()
{
new BoundFieldColumn { FieldName="Name", HeaderText="班级名称", Align=AlignStyle.Center }
},
IsAutoLoad = false,
IsCheckOnSelect = true,
DataSourceUrl = Url.Content("~/Classmajor/ListForGraduate"),
IsPagination = true,
IsShowRowNumbers = true,
IsSingleSelect = false
}
})
查询