BuildingReport.js 664 B

12345678910
  1. var isFirstLoadBuilding = true;
  2. function Report_Search() {
  3. var schoolYearID = $("#SchoolYearDropdown").combobox("getValue");
  4. var buildingID = $("#BuildingsDropdown").combogridX("getValue");
  5. if (buildingID == -1 || buildingID == "")
  6. $("#reportContent").attr("src", CMS_SystemConfig.ReportPagePath + "?ReportFolder=%2fEducationScheduling%2fBuildingSchedulingView&BuildingsInfoID_RAP=&SchoolyearID_RAP=" + schoolYearID);
  7. else
  8. $("#reportContent").attr("src", CMS_SystemConfig.ReportPagePath + "?ReportFolder=%2fEducationScheduling%2fBuildingSchedulingView&BuildingsInfoID_RAP=" + buildingID + "&SchoolyearID_RAP=" + schoolYearID);
  9. }