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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1329-1334 modules: Link Here
1329
1329
1330
    overdues:
1330
    overdues:
1331
      circ-overdues:
1331
      circ-overdues:
1332
        default_display_length: 20
1333
        default_sort_order: 0
1332
        columns:
1334
        columns:
1333
            -
1335
            -
1334
              columnname: due_date
1336
              columnname: due_date
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt (-4 / +2 lines)
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
- 

Return to bug 29648