@using Bowin.Web.Controls.Mvc;
@using EMIS.Web.Controls;
@{
ViewBag.Title = "StudentViewSelect";
}
@section scripts{
}
@Html.ContextMenuBar("Edit-StudentSelect")
@Html.DataGrid(new DataGridOptions
{
Columns = new List()
{
new CheckBoxFieldColumn{ HeaderText="", FieldName="Value"},
new BoundFieldColumn { FieldName="Name", HeaderText="项目名称", Align=AlignStyle.Center }
},
IsCheckOnSelect = true,
DataSourceUrl = Url.Content("~/LevelSetting/GetExaminationSubjectSelect?examinationProjectID=" + ViewBag.ExaminationProjectID),
ID = "dgExaminationSubjectSelect",
IsPagination = true,
IsShowRowNumbers = true,
IsSingleSelect = false,
IsAutoHeight = false,
})