@model EMIS.ViewModel.GraduationManage.GraduationSetting.GraduationConditionView @using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "Edit"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
@Html.ContextMenuBar("Edit")
@Html.HiddenFor(x => x.GraduationConditionID)
@Html.LabelFor(x => x.Title): @Html.TextBoxFor(x => x.Title, new TextBoxOptions() { IsRequired = true }, new Dictionary { { "style", "width:75%;" } })
@Html.LabelFor(x => x.OrderNo): @Html.TextBoxFor(x => x.OrderNo) @Html.LabelFor(x => x.IsEnable): @Html.CheckBoxFor(x => x.IsEnable)
}