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