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

(-)a/admin/columns_settings.yml (+1 lines)
Lines 1235-1240 modules: Link Here
1235
1235
1236
    view_holdsqueue:
1236
    view_holdsqueue:
1237
      holds-table:
1237
      holds-table:
1238
        default_sort_order: 3
1238
        columns:
1239
        columns:
1239
            -
1240
            -
1240
              columnname: title
1241
              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