@using Bowin.Web.Controls.Mvc;
@using EMIS.Web.Controls;
@{
ViewBag.Title = "List";
}
@section scripts{
}
@Html.Position()
形式系数列表
@Html.ContextMenuBar("List")
@Html.DataGrid(new DataGridOptions
{
Columns = new List()
{
new CheckBoxFieldColumn{ HeaderText="", FieldName="PracticeRateID" },
new BoundFieldColumn { FieldName="CourseTypeDesc", HeaderText="课程类型", Align=AlignStyle.Center },
new BoundFieldColumn { FieldName="Rate", HeaderText="课酬系数", Align=AlignStyle.Center, CustomFormatFun="CMSFunction.DataTableFormatter.TwoDigit" }
},
IsCheckOnSelect = true,
DataSourceUrl = Url.Content("~/PracticeRate/List"),
ID = "dgPracticeRateList",
IsPagination = true,
IsShowRowNumbers = true,
IsSingleSelect = false
})