@model EMIS.ViewModel.EducationManage.GenerateTrainingClassConditions @using Bowin.Web.Controls.Mvc; @using EMIS.Entities; @using EMIS.Web.Controls; @{ ViewBag.Title = "Generate"; } @section scripts{ }
@using (Ajax.BeginForm(new AjaxOptions { OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" })) {
@Html.ContextMenuBar("Generate")
@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.ExaminationProjectID): @Html.DropdownListFor(x => x.ExaminationProjectID, new DropdownListOptions { BindType = DropdownListBindType.SelectAll }) @Html.LabelFor(x => x.SchoolAreaID): @Html.DictionaryDropDownListFor(EMIS.ViewModel.DictionaryItem.CF_SchoolArea, x => x.SchoolAreaID, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlSchoolArea", Name = "schoolAreaID" })
}