$(function () { mnu = $.SystemGeneral.getUrlParam("MNU"); }) function schoolyearChange() { try { var examinationBatchUrl = CMS_SystemConfig.VirtualDirectoryPath + '/ExaminationBatch/DropDownList?bindType=0'; var schoolyearID = $("#SchoolyearID").combobox('getValue'); if (schoolyearID != nonSelect) { examinationBatchUrl += "&schoolyearID=" + schoolyearID; } $("#ExaminationBatchID").combobox('reload', examinationBatchUrl); } catch (e) { } } function examinationBatchChange() { try { var examinationProjectUrl = CMS_SystemConfig.VirtualDirectoryPath + '/ExamBatchProject/DropDownList?bindType=0'; var examinationBatchID = $("#ExaminationBatchID").combobox('getValue'); if (examinationBatchID != nonSelect) { examinationProjectUrl += "&examinationBatchID=" + examinationBatchID; } $("#ExaminationProjectID").combobox('reload', examinationProjectUrl); } catch (e) { } } function TrainingClass_Generate() { $(document.forms[0]).submit(); }