@model EMIS.ViewModel.ExaminationManage.ExaminationPlanView @using EMIS.Web.Controls; @using EMIS.ViewModel; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "Edit"; } @section scripts{ }
@Html.LabelFor(x => x.SchoolyearID): | @Html.DisplayFor(x => x.SchoolyearCode) | @Html.LabelFor(x => x.CampusID): | @Html.DisplayFor(x => x.CampusName) |
@Html.LabelFor(x => x.CollegeID): | @Html.DisplayFor(x => x.CollegeName) | @Html.LabelFor(x => x.CoursematerialID): | @Html.DisplayFor(x => x.CoursematerialName) |
@Html.LabelFor(x => x.ClassName): | @Html.DisplayFor(x => x.ClassName) | @Html.LabelFor(x => x.ExaminationModeID): | @Html.DisplayFor(x => x.ExaminationModeName) |
@Html.LabelFor(x => x.StudentCount): | @Html.DisplayFor(x => x.StudentCount) | @Html.LabelFor(x => x.ExaminationStyleID): | @Html.DictionaryDropDownListFor(DictionaryItem.EX_ExaminationStyle, x => x.ExaminationStyleID) |
@Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.PleaseSelect, ID = "ddlTimeSegment", ItemSourceUrl = Url.Content("~/TimeSegment/Dropdown?isForResit=" + ((Model.ExamsCategoryID == (int)EMIS.ViewModel.CF_ExamsCategory.Resit || Model.ExamsCategoryID == (int)EMIS.ViewModel.CF_ExamsCategory.GraduationExam) ? "true" : "false")), TextField = "Text", ValueField = "Value", OnSelect = "setDateTime" }) | @Html.LabelFor(x => x.ExaminationDate): | @Html.TextBoxFor(x => x.ExaminationDate, new TextBoxOptions { TextBoxType = TextBoxType.Date, OnChange = "setFormChanged" }) | |
@Html.LabelFor(x => x.StartTime): | @Html.TextBoxFor(x => x.StartTime, new TextBoxOptions { TextBoxType = TextBoxType.Time, OnChange = "setFormChanged" }) | @Html.LabelFor(x => x.EndTime): | @Html.TextBoxFor(x => x.EndTime, new TextBoxOptions { TextBoxType = TextBoxType.Time, OnChange = "setFormChanged" }) |
@Html.ContextMenuBar(Model.RecordStatus == (int)CF_ApprovalStatus.NotSubmitted ? "Edit-ClassroomGrid" : "Hiddened")
@Html.DataGrid(new DataGridOptions
{
Columns = new List |