@model EMIS.ViewModel.RetakeManage.RetakeDivideIntoClassesView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "DivideIntoClassesEdit"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
@*
重修任务分班
*@
@Html.ContextMenuBar("Separate")
@Html.HiddenFor(x => x.RetakePlanID)
@Html.LabelFor(x => x.ClassName): @Html.TextBoxFor(x => x.ClassName, new TextBoxOptions() { IsEnabled = false }, new Dictionary { { "style", "width:85%;" } })
@Html.LabelFor(x => x.StudentTotalNum): @Html.TextBoxFor(x => x.StudentTotalNum, new TextBoxOptions { IsEnabled = false })
@Html.CheckBoxFor(x => x.IsGroup) 任务班数 @Html.CheckBoxFor(x => x.IsAverageStudent) 平均人数 * (请选择分班方式)
@Html.LabelFor(x => x.GroupNum): @Html.TextBoxFor(x => x.GroupNum) @Html.LabelFor(x => x.StudentNum): @Html.TextBoxFor(x => x.StudentNum)
}