123456789101112131415161718192021222324252627282930313233 |
- function SelectCollegeComboGrid(data) {
- if (data != null) {
- reloadStandard();
- }
- }
- function SelectDictionaryGrade(data) {
- if (data.Value != "-1") {
- selectClass();
- }
- }
- function reloadStandard() {
- var url = CMS_SystemConfig.VirtualDirectoryPath + "/Facultymajor/BindStandardDropDownList?bindType=0";
- var collegeID = $("#CollegeID").combogridX("getValue");
- if (collegeID != nonSelect) url += "&collegeID=" + collegeID;
- $("#StandardID").combobox("reload", url);
- }
- function SelectStandard(data) {
- if (data != null) {
- selectClass();
- }
- }
- function selectClass() {
- var collegeID = $("#CollegeID").combogridX("getValue");
- var year = $("#Year").combobox("getValue");
- var standard = $("#StandardID").combobox("getValue");
- var jsonString = "({'QueryParamsDatas':'CollegeDropdown|*|" + collegeID + "|@|DictionaryGrade|*|" + year
- + "|@|DictionaryStandard|*|" + standard + "|@|'})";
- $("#ClassmarjorID").combogridX("reload", eval(jsonString));
- }
- function ClearAutoSchedule_Confirm() {
- $(document.forms[0]).submit();
- }
|