mirror of
https://github.com/moodle/moodle.git
synced 2025-07-23 15:22:05 +02:00
71 lines
2.7 KiB
JavaScript
71 lines
2.7 KiB
JavaScript
M.tool_assignmentupgrade = {
|
|
init_upgrade_table: function(Y) {
|
|
|
|
Y.use('node', function(Y) {
|
|
checkboxes = Y.all('td.c0 input');
|
|
checkboxes.each(function(node) {
|
|
node.on('change', function(e) {
|
|
rowelement = e.currentTarget.get('parentNode').get('parentNode');
|
|
if (e.currentTarget.get('checked')) {
|
|
rowelement.setAttribute('class', 'selectedrow');
|
|
} else {
|
|
rowelement.setAttribute('class', 'unselectedrow');
|
|
}
|
|
});
|
|
|
|
rowelement = node.get('parentNode').get('parentNode');
|
|
if (node.get('checked')) {
|
|
rowelement.setAttribute('class', 'selectedrow');
|
|
} else {
|
|
rowelement.setAttribute('class', 'unselectedrow');
|
|
}
|
|
});
|
|
});
|
|
|
|
var selectall = Y.one('th.c0 input');
|
|
selectall.on('change', function(e) {
|
|
if (e.currentTarget.get('checked')) {
|
|
checkboxes = Y.all('td.c0 input');
|
|
checkboxes.each(function(node) {
|
|
rowelement = node.get('parentNode').get('parentNode');
|
|
node.set('checked', true);
|
|
rowelement.setAttribute('class', 'selectedrow');
|
|
});
|
|
} else {
|
|
checkboxes = Y.all('td.c0 input');
|
|
checkboxes.each(function(node) {
|
|
rowelement = node.get('parentNode').get('parentNode');
|
|
node.set('checked', false);
|
|
rowelement.setAttribute('class', 'unselectedrow');
|
|
});
|
|
}
|
|
});
|
|
|
|
var upgradeselectedbutton = Y.one('#id_upgradeselected');
|
|
upgradeselectedbutton.on('click', function(e) {
|
|
checkboxes = Y.all('td.c0 input');
|
|
var selectedassignments = [];
|
|
checkboxes.each(function(node) {
|
|
if (node.get('checked')) {
|
|
selectedassignments[selectedassignments.length] = node.get('value');
|
|
}
|
|
});
|
|
|
|
operation = Y.one('#id_operation');
|
|
assignmentsinput = Y.one('input.selectedassignments');
|
|
assignmentsinput.set('value', selectedassignments.join(','));
|
|
if (selectedassignments.length == 0) {
|
|
alert(M.util.get_string('noassignmentsselected', 'tool_assignmentupgrade'));
|
|
e.preventDefault();
|
|
}
|
|
});
|
|
|
|
var perpage = Y.one('#id_perpage');
|
|
perpage.on('change', function(e) {
|
|
window.onbeforeunload = null;
|
|
Y.one('.tool_assignmentupgrade_paginationform form').submit();
|
|
});
|
|
|
|
}
|
|
}
|