|
Lines 1-6
Link Here
|
| 1 |
$(document).ready(function() { |
1 |
$(document).ready(function() { |
| 2 |
$.ajaxSetup ({ cache: false }); |
2 |
$.ajaxSetup ({ cache: false }); |
| 3 |
|
3 |
|
|
|
4 |
var barcodefield = $("#barcode"); |
| 5 |
|
| 4 |
// Handle the select all/none links for checkouts table columns |
6 |
// Handle the select all/none links for checkouts table columns |
| 5 |
$("#CheckAllRenewals").on("click",function(){ |
7 |
$("#CheckAllRenewals").on("click",function(){ |
| 6 |
$("#UncheckAllCheckins").click(); |
8 |
$("#UncheckAllCheckins").click(); |
|
Lines 132-140
$(document).ready(function() {
Link Here
|
| 132 |
if ( this.checked && typeof issuesTable === 'undefined') { |
134 |
if ( this.checked && typeof issuesTable === 'undefined') { |
| 133 |
$('#issues-table-load-now-button').click(); |
135 |
$('#issues-table-load-now-button').click(); |
| 134 |
} |
136 |
} |
|
|
137 |
barcodefield.focus(); |
| 135 |
}); |
138 |
}); |
| 136 |
$('#issues-table-load-now-button').click(function(){ |
139 |
$('#issues-table-load-now-button').click(function(){ |
| 137 |
LoadIssuesTable(); |
140 |
LoadIssuesTable(); |
|
|
141 |
barcodefield.focus(); |
| 138 |
return false; |
142 |
return false; |
| 139 |
}); |
143 |
}); |
| 140 |
|
144 |
|
| 141 |
- |
|
|