Index: lams_gradebook/conf/language/lams/ApplicationResources.properties =================================================================== diff -u -re4a18240e90b1bff3c0141abc9e711fb54b76d51 -r4fb0517551dd30568c65666806d235ad472be8bd --- lams_gradebook/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision e4a18240e90b1bff3c0141abc9e711fb54b76d51) +++ lams_gradebook/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision 4fb0517551dd30568c65666806d235ad472be8bd) @@ -63,6 +63,7 @@ gradebook.exportcourse.current.activity = Current activity: {0} gradebook.gridtitle.lesson.view = Lesson View gradebook.gridtitle.learner.view = Grades by learner +gradebook.grid.expand.all = Expand all label.button.export = Export label.lessons = Lessons label.group = Group Index: lams_gradebook/web/gradebookMonitorContent5.jsp =================================================================== diff -u -r3ad1f24fbe6a8b105138f400d04b03c8989d75cf -r4fb0517551dd30568c65666806d235ad472be8bd --- lams_gradebook/web/gradebookMonitorContent5.jsp (.../gradebookMonitorContent5.jsp) (revision 3ad1f24fbe6a8b105138f400d04b03c8989d75cf) +++ lams_gradebook/web/gradebookMonitorContent5.jsp (.../gradebookMonitorContent5.jsp) (revision 4fb0517551dd30568c65666806d235ad472be8bd) @@ -82,6 +82,17 @@ } } + /* + Expands all subgrids of the given jqGrid. + */ + function expandAllRows(jqGridId) { + let jqGrid = $('#' + jqGridId), + ids = jqGrid.getDataIDs(); + $.each(ids, function(){ + jqGrid.expandSubGridRow(this); + }); + } + jQuery(document).ready(function(){ var jqgridWidth = $(window).width() - 100; @@ -734,15 +745,15 @@