2 M.report_participation = {};
4 M.report_participation.init = function(Y) {
6 Y.on('submit', function(e) {
7 Y.one('#formactionselect').get('options').each(function() {
8 if (this.get('selected') && this.get('value') == '') {
14 Y.all('input.usercheckbox').each(function() {
15 if (this.get('checked')) {
20 // no checkbox selected
25 Y.on('click', function(e) {
26 Y.all('input.usercheckbox').each(function() {
27 this.set('checked', 'checked');
31 Y.on('click', function(e) {
32 Y.all('input.usercheckbox').each(function() {
33 this.set('checked', '');
37 Y.on('click', function(e) {
38 Y.all('input.usercheckbox').each(function() {
39 if (this.get('value') == 0) {
40 this.set('checked', 'checked');