|
Lines 14-22
function RefreshIssuesTable() {
Link Here
|
| 14 |
return this.value; |
14 |
return this.value; |
| 15 |
}).get(); |
15 |
}).get(); |
| 16 |
table.ajax.reload( function() { |
16 |
table.ajax.reload( function() { |
| 17 |
CheckRenewCheckinBoxes(); |
|
|
| 18 |
var checkout_count = table.page.info().recordsTotal; |
17 |
var checkout_count = table.page.info().recordsTotal; |
| 19 |
$('.checkout_count').text(checkout_count); |
18 |
$('.checkout_count').text(checkout_count); |
|
|
19 |
renewchecked.forEach( function(item) { |
| 20 |
$('.renew[value="'+item+'"]').prop('checked' , true ); |
| 21 |
}); |
| 22 |
|
| 23 |
checkinchecked.forEach( function(item) { |
| 24 |
$('.checkin[value="'+item+'"]').prop('checked' , true ); |
| 25 |
}); |
| 26 |
CheckRenewCheckinBoxes(); |
| 20 |
}); |
27 |
}); |
| 21 |
} |
28 |
} |
| 22 |
|
29 |
|
| 23 |
- |
|
|