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