]> git.datanom.net - qtadmin.git/blob - js/checkbox.js
add more debug info
[qtadmin.git] / js / checkbox.js
1 /* vim: set ts=4 tw=4 sw=4 noet: */
2
3 function checkAction(action) {
4 var ids = '';
5 var c = document.getElementsByName('action');
6 for (var i = 0; i < c.length; i++) {
7 if (c[i].type == 'checkbox' && c[i].checked == true) {
8 if (ids == '') {
9 ids = c[i].value;
10 } else {
11 ids += ',' + c[i].value;
12 }
13 }
14 }
15 var url = 'quarantine.php?op=' + action + '&id=' + ids;
16 location.href=url;
17 }
18
19 function updateAction(chkBtn) {
20 var checked = chkBtn.checked;
21 var c = document.getElementsByName('action');
22 for (var i = 0; i < c.length; i++) {
23 if (c[i].type == 'checkbox' && c[i].checked != checked) {
24 c[i].checked = checked;
25 }
26 }
27 }
This page took 0.059159 seconds and 6 git commands to generate.