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