Skip to content
Snippets Groups Projects
Commit f02f287e authored by srosse's avatar srosse
Browse files

OO-1512: implements missing select / deselect all

parent 9766a08e
No related branches found
No related tags found
No related merge requests found
......@@ -117,9 +117,9 @@ public class ChooseElementsController extends FormBasicController {
@Override
protected void formInnerEvent(UserRequest ureq, FormItem source, FormEvent event) {
if(selectAll == source) {
selectTree.selectAll();
} else if(deselectAll == source) {
selectTree.deselectAll();
}
super.formInnerEvent(ureq, source, event);
}
......
#if($elementNames && $elementNames.size() > 0)
$r.translate("elements"):
#foreach($elementName in $elementNames)
<span>$elementName</span>
<span>#if($elementNames.indexOf($elementName) > 0), #end$elementName</span>
#end
<br/>
#end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment