|
@@ -355,7 +355,6 @@ function checkAll(e,id){
|
|
|
if ($(id).checked && !$(id).indeterminate){
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
var input = rows[i].children[e].getElementsByTagName('input')[0];
|
|
|
- console.log(input.checked, input.id);
|
|
|
if (!input.checked) {
|
|
|
input.checked = true;
|
|
|
snmpPush(input.id);
|
|
@@ -395,6 +394,7 @@ function allCheckboxStates(e,id){
|
|
|
}
|
|
|
}
|
|
|
if (c.length && nc.length) {
|
|
|
+ $(id).checked = false;
|
|
|
$(id).indeterminate = true;
|
|
|
} else if (c.length == rows.length) {
|
|
|
$(id).checked = true;
|