|
Lines 1422-1428
Link Here
|
| 1422 |
var columns_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'holdingst', 'json' ) %]; |
1422 |
var columns_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'holdingst', 'json' ) %]; |
| 1423 |
|
1423 |
|
| 1424 |
KohaTable("#holdingst", { |
1424 |
KohaTable("#holdingst", { |
| 1425 |
dom: 'B<"clearfix">t', |
1425 |
dom: '<"clearfix">t', |
| 1426 |
"columnDefs": [ |
1426 |
"columnDefs": [ |
| 1427 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
1427 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
| 1428 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
1428 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
|
Lines 1431-1437
Link Here
|
| 1431 |
}, columns_settings); |
1431 |
}, columns_settings); |
| 1432 |
|
1432 |
|
| 1433 |
KohaTable("#otherholdingst", { |
1433 |
KohaTable("#otherholdingst", { |
| 1434 |
dom: 'B<"clearfix">t', |
1434 |
dom: '<"clearfix">t', |
| 1435 |
"columnDefs": [ |
1435 |
"columnDefs": [ |
| 1436 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
1436 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
| 1437 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
1437 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
|
Lines 1442-1448
Link Here
|
| 1442 |
var serial_column_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) %]; |
1442 |
var serial_column_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) %]; |
| 1443 |
|
1443 |
|
| 1444 |
KohaTable("#subscriptionst", { |
1444 |
KohaTable("#subscriptionst", { |
| 1445 |
dom: 'B<"clearfix">t', |
1445 |
dom: '<"clearfix">t', |
| 1446 |
"columnDefs": [ |
1446 |
"columnDefs": [ |
| 1447 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
1447 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
| 1448 |
], |
1448 |
], |
| 1449 |
- |
|
|