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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1263-1268 modules: Link Here
1263
1263
1264
    holds:
1264
    holds:
1265
      holds-to-pull:
1265
      holds-to-pull:
1266
        default_display_length: 20
1267
        default_sort_order: 0
1266
        columns:
1268
        columns:
1267
            -
1269
            -
1268
              columnname: pull_items
1270
              columnname: pull_items
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-3 / +2 lines)
Lines 301-310 Link Here
301
    [% INCLUDE 'columns_settings.inc' %]
301
    [% INCLUDE 'columns_settings.inc' %]
302
    <script>
302
    <script>
303
        $(document).ready(function() {
303
        $(document).ready(function() {
304
          var columns_settings = [% TablesSettings.GetColumns('circ', 'holds', 'holds-to-pull', 'json') | $raw %];
304
          var table_settings = [% TablesSettings.GetTableSettings('circ', 'holds', 'holds-to-pull', 'json') | $raw %];
305
          var holdst = KohaTable("holdst", {
305
          var holdst = KohaTable("holdst", {
306
            "sPaginationType": "full_numbers"
306
            "sPaginationType": "full_numbers"
307
          }, columns_settings);
307
          }, table_settings);
308
          holdst.fnAddFilters("filter");
308
          holdst.fnAddFilters("filter");
309
          [%# add separateData function to cleanse jQuery select lists by breaking apart strings glued with BR tags and then de-duplicating any repeated library codes %]
309
          [%# add separateData function to cleanse jQuery select lists by breaking apart strings glued with BR tags and then de-duplicating any repeated library codes %]
310
          function separateData ( ColumnData ){
310
          function separateData ( ColumnData ){
311
- 

Return to bug 29648