-
Bug
-
Resolution: Fixed
-
Minor
-
2.7.4, 2.7.8, 2.8.2, 2.8.6, 2.9, 3.0
-
MOODLE_27_STABLE, MOODLE_28_STABLE, MOODLE_29_STABLE, MOODLE_30_STABLE
-
MOODLE_28_STABLE, MOODLE_29_STABLE
-
Scenario:
In a course exist multiple groups and groupings.
A group is associated to more than one gouping (see screenshot group_overview).
In the overview page, when hovering a group name, usually the description in displayed (see screenshot group_overview_hover).
Problem:
In this case, however, when the group is displayed in the second grouping the description is not displayed a second time (see screenshot group_overview_no_hover)
Cause:
The groups are defined via id's
<span id="group_3962">Tutoren</span>
and the description hover is referenced by those id's
M.core_group.init_hover_events(Y, {"group_3962":"<div class=\"no-overflow\"><p>Alle ****-Tutorinnen und -Tutoren.<\/p>
In HTML id's are unique and cannot be referenced multiple times
Proposal consideration:
- work with classes instead of of id's