@using Bowin.Web.Controls.Mvc;
@using EMIS.Entities;
@using EMIS.Web.Controls;
@{
ViewBag.Title = "评价内容";
}
@section scripts{
}
@Html.Position()
评价内容列表
@Html.ContextMenuBar("List")
@Html.DataGrid(new DataGridOptions
{
Columns = new List()
{
new CheckBoxFieldColumn{ HeaderText="", FieldName="EntityID"},
new LinkButtonColumn { FieldName="CourseName", HeaderText="课程名称", Align=AlignStyle.Center, Handle="edit" },
new BoundFieldColumn { FieldName="EducationMissionClassName", HeaderText="任务班名称", Align=AlignStyle.Center , },
new BoundFieldColumn { FieldName="UserNames", HeaderText="被评教师", Align=AlignStyle.Center , },
new BoundFieldColumn { FieldName="ParticipatorNames", HeaderText="参评人", Align=AlignStyle.Center , },
new BoundFieldColumn { FieldName="EvaluationTypeName", HeaderText="参评类型", Align=AlignStyle.Center, },
new BoundFieldColumn { FieldName="EvaluationTableName", HeaderText="评价表名", Align=AlignStyle.Center, },
new BoundFieldColumn { FieldName="OpenStatusName", HeaderText="开放状态", Align=AlignStyle.Center, },
},
IsCheckOnSelect = true,
DataSourceUrl = Url.Action("List"),
ID = "dgEvaluationContentList",
IsPagination = true,
IsShowRowNumbers = true,
IsSingleSelect = false
})