@using EMIS.Web.Controls;
@using Bowin.Web.Controls.Mvc;
@{
ViewBag.Title = "Setting";
}
@section scripts{
}
@Html.DataGrid(new DataGridOptions
{
Columns = new List()
{
new CheckBoxFieldColumn{ HeaderText="", FieldName="ClassroomID" },
new BoundFieldColumn { FieldName="Code", HeaderText="教室编号", Align=AlignStyle.Center },
new BoundFieldColumn { FieldName="Name", HeaderText="教室名称", Align=AlignStyle.Center },
new BoundFieldColumn { FieldName="ClassroomTypeName", HeaderText="教室类型", Align=AlignStyle.Center },
new BoundFieldColumn { FieldName="Totalseating", HeaderText="总座位数", Align=AlignStyle.Center },
new BoundFieldColumn { FieldName="BuildingsInfoName", HeaderText="建筑物名称", Align=AlignStyle.Center },
new LinkButtonColumn { Text="课表查看", HeaderText="", Align=AlignStyle.Center, Handle="showReport" }
},
IsAutoLoad = false,
IsCheckOnSelect = true,
ID = "dgClassroomList",
IsPagination = false,
IsShowRowNumbers = true,
IsSingleSelect = false
})