@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="LearningformRateID" },
new BoundFieldColumn { FieldName="LearningformDesc", HeaderText="学习形式", Align=AlignStyle.Center },
new BoundFieldColumn { FieldName="EducationDesc", HeaderText=EMIS.Utility.RSL.Get("EducationID"), Align=AlignStyle.Center },
new BoundFieldColumn { FieldName="Rate", HeaderText="课酬系数", Align=AlignStyle.Center, CustomFormatFun="CMSFunction.DataTableFormatter.TwoDigit" }
},
IsCheckOnSelect = true,
DataSourceUrl = Url.Content("~/LearningformRate/List"),
ID = "dgLearningformRateList",
IsPagination = true,
IsShowRowNumbers = true,
IsSingleSelect = false
})