@model EMIS.ViewModel.EvaluationManage.EvaluationSetting.EvaluationControlView @using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; }
@Html.Position() @using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
@Html.ContextMenuBar("List")
@Html.LabelFor(x => x.SchoolyearCode): @Html.DropdownListFor((x => x.SchoolyearID), new DropdownListOptions { TextField = "Text", ValueField = "Value", BindType = DropdownListBindType.PleaseSelect, ItemSourceUrl = Url.Content("~/SchoolYear/YearsDropdownListBanid") })
@Html.LabelFor(x => x.IsLoginLock): @Html.CheckBoxFor(x => x.IsLoginLock) @Html.LabelFor(x => x.LoginLockMessage): @Html.TextBoxFor(x => x.LoginLockMessage, new { style = "width: 90%" })
@Html.LabelFor(x => x.IsSelectCourseLock): @Html.CheckBoxFor(x => x.IsSelectCourseLock) @Html.LabelFor(x => x.SelectCourseLockMessage): @Html.TextBoxFor(x => x.SelectCourseLockMessage, new { style = "width: 90%" })
@Html.LabelFor(x => x.IsExaminationApplyLock): @Html.CheckBoxFor(x => x.IsExaminationApplyLock) @Html.LabelFor(x => x.ExaminationApplyLockMessage): @Html.TextBoxFor(x => x.ExaminationApplyLockMessage, new { style = "width: 90%" })
@Html.LabelFor(x => x.IsCourseScoreLock): @Html.CheckBoxFor(x => x.IsCourseScoreLock) @Html.LabelFor(x => x.CourseScoreLockMessage): @Html.TextBoxFor(x => x.CourseScoreLockMessage, new { style = "width: 90%" })
@Html.LabelFor(x => x.IsLevelScoreLock): @Html.CheckBoxFor(x => x.IsLevelScoreLock) @Html.LabelFor(x => x.LevelScoreLockMessage): @Html.TextBoxFor(x => x.LevelScoreLockMessage, new { style = "width: 90%" })
@Html.LabelFor(x => x.NoNumber): @Html.TextBoxFor(x => x.NoNumber)
}
@section scripts{ }