Lines 1452-1458
Link Here
|
1452 |
var columns_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'holdingst', 'json' ) %]; |
1452 |
var columns_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'holdingst', 'json' ) %]; |
1453 |
|
1453 |
|
1454 |
KohaTable("#holdingst", { |
1454 |
KohaTable("#holdingst", { |
1455 |
dom: 'B<"clearfix">t', |
1455 |
dom: '<"clearfix">t', |
1456 |
"columnDefs": [ |
1456 |
"columnDefs": [ |
1457 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
1457 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
1458 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
1458 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
Lines 1461-1467
Link Here
|
1461 |
}, columns_settings); |
1461 |
}, columns_settings); |
1462 |
|
1462 |
|
1463 |
KohaTable("#otherholdingst", { |
1463 |
KohaTable("#otherholdingst", { |
1464 |
dom: 'B<"clearfix">t', |
1464 |
dom: '<"clearfix">t', |
1465 |
"columnDefs": [ |
1465 |
"columnDefs": [ |
1466 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
1466 |
{ "targets": [ -1 ], "sortable": false, "searchable": false }, |
1467 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
1467 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
Lines 1472-1478
Link Here
|
1472 |
var serial_column_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) %]; |
1472 |
var serial_column_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) %]; |
1473 |
|
1473 |
|
1474 |
KohaTable("#subscriptionst", { |
1474 |
KohaTable("#subscriptionst", { |
1475 |
dom: 'B<"clearfix">t', |
1475 |
dom: '<"clearfix">t', |
1476 |
"columnDefs": [ |
1476 |
"columnDefs": [ |
1477 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
1477 |
{ "type": "title-string", "targets" : [ "title-string" ] } |
1478 |
], |
1478 |
], |
1479 |
- |
|
|