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 291-303 Link Here
291
            };
291
            };
292
            $('#holdst thead input').on('change keyup keydown', filterColumn);
292
            $('#holdst thead input').on('change keyup keydown', filterColumn);
293
293
294
            var columns_settings = [% TablesSettings.GetColumns('circ', 'view_holdsqueue', 'holds-table', 'json') | $raw %];
294
            var table_settings = [% TablesSettings.GetTableSettings('circ', 'view_holdsqueue', 'holds-table', 'json') | $raw %];
295
            var holdst = KohaTable("holdst", {
295
            var holdst = KohaTable("holdst", {
296
                "aaSorting": [[ 3, "asc" ]],
297
                "sDom": 'B<"clearfix">t',
296
                "sDom": 'B<"clearfix">t',
298
                "bSortCellsTop": true,
297
                "bSortCellsTop": true,
299
                "bPaginate": false
298
                "bPaginate": false
300
            }, columns_settings);
299
            }, table_settings);
301
300
302
        });
301
        });
303
    </script>
302
    </script>
304
- 

Return to bug 29648