TeacherExaminationSchedule.js 607 B

1234567891011121314151617
  1. var isFirstLoadSchoolyear = true;
  2. function SchoolyearLoaded(data) {
  3. if (((data.length && data.length > 0) || data)) {
  4. if (isFirstLoadSchoolyear) {
  5. isFirstLoadSchoolyear = false;
  6. } else {
  7. reload();
  8. }
  9. }
  10. }
  11. function reload() {
  12. var schoolYearID = $("#SchoolYearDropdown").combobox("getValue");
  13. var userID = $("#UserID").val();
  14. $("#reportContent").attr("src", CMS_SystemConfig.ReportPagePath + "?ReportFolder=%2fExaminationManage%2fTeacherExaminationSchedule&rs:Command=Render&SchoolyearID_RAP=" + schoolYearID + "&UserID_RAP=" + userID);
  15. }