View | Details | Raw Unified | Return to bug 29648
Collapse All | Expand All

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1344-1349 modules: Link Here
1344
1344
1345
    overdues:
1345
    overdues:
1346
      circ-overdues:
1346
      circ-overdues:
1347
        default_display_length: 20
1348
        default_sort_order: 0
1347
        columns:
1349
        columns:
1348
            -
1350
            -
1349
              columnname: due_date
1351
              columnname: due_date
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt (-4 / +2 lines)
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
- 

Return to bug 29648