@model EMIS.ViewModel.ScoreManage.ProjectScoreGenerateCondition @using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @{ ViewBag.Title = "Generate"; } @section scripts{ }
@Html.LabelFor(x => x.SchoolyearID): | @Html.DropdownListFor(x => x.SchoolyearID, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), OnSelect = "schoolyearChange", SelectedValue = BaseExtensions.GetCurrentSchoolYearID(), OnLoadSuccess = "schoolyearChange" }) | @Html.LabelFor(x => x.ExaminationBatchID): | @Html.DropdownListFor(x => x.ExaminationBatchID, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, OnSelect = "examinationBatchChange", OnLoadSuccess = "examinationBatchChange" }) |
@Html.LabelFor(x => x.ExaminationTypeID): | @Html.DropdownListFor(x => x.ExaminationTypeID, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, OnSelect = "examinationTypeChange", OnLoadSuccess = "examinationTypeChange" }) | @Html.LabelFor(x => x.ExaminationProjectID): | @Html.DropdownListFor(x => x.ExaminationProjectID, new DropdownListOptions { BindType = DropdownListBindType.SelectAll }) |