Index: lams_gradebook/web/gradebookCourseMonitor.jsp =================================================================== diff -u -r6e5015d036550bcae770b2125000995c79c3dea2 -r7e71d3c117c81dda7bed5a8bfb1f3e01adc3c104 --- lams_gradebook/web/gradebookCourseMonitor.jsp (.../gradebookCourseMonitor.jsp) (revision 6e5015d036550bcae770b2125000995c79c3dea2) +++ lams_gradebook/web/gradebookCourseMonitor.jsp (.../gradebookCourseMonitor.jsp) (revision 7e71d3c117c81dda7bed5a8bfb1f3e01adc3c104) @@ -389,7 +389,8 @@ }); function openSelectLessonsArea() { - $("#select-lessons-area").toggleclass("hidden"); + debugger; + $("#select-lessons-area").toggleClass("hidden"); if ( hideShowLessonCheckboxes() ) { document.getElementById("selectLessonsShown").style.display="inline"; document.getElementById("selectLessonsNotShown").style.display="none"; @@ -403,7 +404,7 @@ // only show the selection checkboxes when the select lesson for export is shown // returns true if checkboxes are shown. Relies on the .hidden class. function hideShowLessonCheckboxes() { - if ( $("#select-lessons-area").css('display') == 'none' ) { + if ( $("#select-lessons-area").css('display') == 'hidden' ) { jQuery("#organisationGrid").jqGrid('hideCol', 'cb'); return false; } @@ -414,7 +415,7 @@ // the location of the subgrids "look into here" arrow is thrown out by showing/hiding checkboxes // so show/hide the first column in the subgrid to match function fixArrowColumn(subgridName) { - if ( $("#select-lessons-area").css('display') == 'none' ) { + if ( $("#select-lessons-area").css('display') == 'hidden' ) { jQuery("#"+subgridName).parent().siblings("td:first").css( "display", "none" ); } } @@ -491,10 +492,10 @@ -