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

(-)a/admin/columns_settings.yml (+1 lines)
Lines 1207-1212 modules: Link Here
1207
1207
1208
    view_holdsqueue:
1208
    view_holdsqueue:
1209
      holds-table:
1209
      holds-table:
1210
        default_sort_order: 3
1210
        columns:
1211
        columns:
1211
            -
1212
            -
1212
              columnname: title
1213
              columnname: title
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-4 / +2 lines)
Lines 298-310 Link Here
298
            };
298
            };
299
            $('#holdst thead input').on('change keyup keydown', filterColumn);
299
            $('#holdst thead input').on('change keyup keydown', filterColumn);
300
300
301
            var columns_settings = [% TablesSettings.GetColumns('circ', 'view_holdsqueue', 'holds-table', 'json') | $raw %];
301
            var table_settings = [% TablesSettings.GetTableSettings('circ', 'view_holdsqueue', 'holds-table', 'json') | $raw %];
302
            var holdst = KohaTable("holdst", {
302
            var holdst = KohaTable("holdst", {
303
                "aaSorting": [[ 3, "asc" ]],
304
                "sDom": 'B<"clearfix">t',
303
                "sDom": 'B<"clearfix">t',
305
                "bSortCellsTop": true,
304
                "bSortCellsTop": true,
306
                "bPaginate": false
305
                "bPaginate": false
307
            }, columns_settings);
306
            }, table_settings);
308
307
309
        });
308
        });
310
    </script>
309
    </script>
311
- 

Return to bug 29648