@model EMIS.ViewModel.EducationSchedule.EducationSchedulingStopView @using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; } @section scripts{ } @using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) { @Html.HiddenFor(x => x.EducationMissionClassID) @Html.HiddenFor(x => x.Weekday) @Html.HiddenFor(x => x.CoursesTimeID) @Html.HiddenFor(x => x.ClassroomID) @Html.HiddenFor(x => x.UserID)
停课申请
@Html.ContextMenuBar("Edit")
@Html.DropdownListFor(x => x.WeekNum, new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ItemList = Model.ScheduleWeekNumList.OrderBy(x => x).Select(x => new DropdownListItem { Text = x.ToString(), Value = x }).ToList() })
}