FacultymajorStudentCount.js 510 B

123456789101112
  1. function FacultymajorStudentCount_Generate() {
  2. $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + "/FacultymajorStudentCount/Generate?year=" + $("#YearDropdown").combobox('getValue'), null, reload);
  3. }
  4. function reload() {
  5. var year = $("#YearDropdown").combobox('getValue');
  6. $("#reportContent").attr("src", CMS_SystemConfig.ReportPagePath + "?ReportFolder=%2fStudentManage%2fHighBaseFacultymajorStudentCount&Year_RAP=" + year);
  7. }
  8. $.parser.onComplete = function (context) {
  9. reload();
  10. }