| Lines 179-198
          
      
      
        Link Here | 
        
          | 179 |     [% INCLUDE 'columns_settings.inc' %] | 179 |     [% INCLUDE 'columns_settings.inc' %] | 
        
          | 180 |     <script> | 180 |     <script> | 
        
          | 181 |         var MSG_CANCEL_SELECTED = _("Cancel selected (%s)"); | 181 |         var MSG_CANCEL_SELECTED = _("Cancel selected (%s)"); | 
          
            
              | 182 |         var holdst_columns_settings = [% TablesSettings.GetColumns( 'circ', 'holds_awaiting_pickup', 'holdst', 'json' ) | $raw %]; | 182 |         var holdst_table_settings = [% TablesSettings.GetTableSettings( 'circ', 'holds_awaiting_pickup', 'holdst', 'json' ) | $raw %]; | 
            
              | 183 |         var holdso_columns_settings = [% TablesSettings.GetColumns( 'circ', 'holds_awaiting_pickup', 'holdso', 'json' ) | $raw %]; | 183 |         var holdso_table_settings = [% TablesSettings.GetTableSettings( 'circ', 'holds_awaiting_pickup', 'holdso', 'json' ) | $raw %]; | 
        
          | 184 |  | 184 |  | 
        
          | 185 |         $(document).ready(function() { | 185 |         $(document).ready(function() { | 
        
          | 186 |  | 186 |  | 
        
          | 187 |             KohaTable("holdst", { | 187 |             KohaTable("holdst", { | 
        
          | 188 |                 "sPaginationType": "full", | 188 |                 "sPaginationType": "full", | 
        
          | 189 |                 "order": [[1, 'asc']] | 189 |                 "order": [[1, 'asc']] | 
          
            
              | 190 |             }, holdst_columns_settings); | 190 |             }, holdst_table_settings); | 
        
          | 191 |  | 191 |  | 
        
          | 192 |             KohaTable("holdso", { | 192 |             KohaTable("holdso", { | 
        
          | 193 |                 "sPaginationType": "full", | 193 |                 "sPaginationType": "full", | 
        
          | 194 |                 "order": [[1, 'asc']] | 194 |                 "order": [[1, 'asc']] | 
          
            
              | 195 |             }, holdso_columns_settings); | 195 |             }, holdso_table_settings); | 
        
          | 196 |  | 196 |  | 
        
          | 197 |             $('#resultlist').tabs(); | 197 |             $('#resultlist').tabs(); | 
        
          | 198 |  | 198 |  |