@model EMIS.ViewModel.DegreeManage.DegreeSetting.DegreeOpenControlView @using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Edit"; } @section scripts{ }
@Html.LabelFor(x => x.GraduatingSemesterCode): | @Html.DropdownListFor(x => x.GraduatingSemesterID, new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ItemSourceUrl = Url.Content("~/SchoolYear/YearsDropdownListBanid") }) | @Html.LabelFor(x => x.DegreeBatchID): | @Html.DictionaryComboGridFor(EMIS.ViewModel.DictionaryItem.ER_DegreeBatch, (x => x.DegreeBatchID), DropdownListBindType.PleaseSelect, new ComboGridOptions() { IsEnabled = true }) |
@Html.LabelFor(x => x.StartDate): | @Html.TextBoxFor(x => x.StartDate, new TextBoxOptions { TextBoxType = TextBoxType.DateTime }) | @Html.LabelFor(x => x.EndDate): | @Html.TextBoxFor(x => x.EndDate, new TextBoxOptions { TextBoxType = TextBoxType.DateTime }) |