|
Lines 297-309
Link Here
|
| 297 |
} |
297 |
} |
| 298 |
|
298 |
|
| 299 |
$(document).ready(function(){ |
299 |
$(document).ready(function(){ |
| 300 |
var columns_settings = [% TablesSettings.GetColumns( 'circ', 'overdues', 'circ-overdues', 'json' ) | $raw %]; |
300 |
var table_settings = [% TablesSettings.GetTableSettings( 'circ', 'overdues', 'circ-overdues', 'json' ) | $raw %]; |
| 301 |
KohaTable("overduest", { |
301 |
KohaTable("overduest", { |
| 302 |
"sPaginationType": "full", |
302 |
"sPaginationType": "full", |
| 303 |
"aaSorting": [[0, 'asc']], |
|
|
| 304 |
"autoWidth": false, |
303 |
"autoWidth": false, |
| 305 |
"stateSave": true |
304 |
"stateSave": true |
| 306 |
}, columns_settings); |
305 |
}, table_settings); |
| 307 |
|
306 |
|
| 308 |
$("#showall").on("change", function(){ |
307 |
$("#showall").on("change", function(){ |
| 309 |
update_date_due_filters_visibility(); |
308 |
update_date_due_filters_visibility(); |
| 310 |
- |
|
|