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