@model EMIS.ViewModel.EducationManage.DivideIntoClassesView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Edit"; } @section scripts{ }
@Html.LabelFor(x => x.ClassName): | @Html.TextBoxFor(x => x.ClassName, new TextBoxOptions { IsEnabled = false }) | @Html.LabelFor(x => x.StudentTotalNum): | @Html.TextBoxFor(x => x.StudentTotalNum, new TextBoxOptions { IsEnabled = false }) |
@Html.CheckBoxFor(x => x.IsAverageStudent)按平均人数进行分班 @Html.CheckBoxFor(x => x.IsGroup)按班数平均分配 @Html.CheckBoxFor(x => x.OrderType, EMIS.ViewModel.EducationManage.DivideClassOrderType.ByClassmajor)按学籍班分组 | |||
@Html.LabelFor(x => x.StudentNum): | @Html.TextBoxFor(x => x.StudentNum) | @Html.LabelFor(x => x.GroupNum): | @Html.TextBoxFor(x => x.GroupNum) |
@Html.LabelFor(x => x.IsNotBuildEducationMission): | @Html.CheckBoxFor(x => x.IsNotBuildEducationMission) | @*@Html.LabelFor(x => x.OrderType):*@ | @* @Html.RadioButtonFor(x => x.OrderType, EMIS.ViewModel.EducationManage.DivideClassOrderType.ByStudentLoginID) @Html.RadioButtonFor(x => x.OrderType, EMIS.ViewModel.EducationManage.DivideClassOrderType.ByClassmajor)*@ |
@Html.LabelFor(x => x.Remark): | @Html.TextAreaFor(x => x.Remark, new Dictionary |