2009-03-24 04:22:56 +08:00
|
|
|
var Actions = {
|
|
|
|
init: function() {
|
|
|
|
selectAll = document.getElementById('action-toggle');
|
|
|
|
if (selectAll) {
|
|
|
|
selectAll.style.display = 'inline';
|
2009-03-24 11:11:38 +08:00
|
|
|
addEvent(selectAll, 'click', function() {
|
|
|
|
Actions.checker(selectAll.checked);
|
2009-03-24 04:22:56 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
checker: function(checked) {
|
|
|
|
actionCheckboxes = document.getElementsBySelector('tr input.action-select');
|
|
|
|
for(var i = 0; i < actionCheckboxes.length; i++) {
|
|
|
|
actionCheckboxes[i].checked = checked;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addEvent(window, 'load', Actions.init);
|