Bug 21145: Do not show buttons for datatables on opac detail page
Test plan: 0) Do not apply the patch 1) Go to opac detail page 2) There are up to three datatables - items - items from other branches (only if there are any and the OpacSeparateHoldings preference is set) - subscriptions 3) try to find record with all three tables and confirm, there is button "Columns visibility" above the table 4) Apply the patch 5) Repeat 1-3 and confirm the button is no more here Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
6e5865ee4f
commit
c0eb67a557
1 changed files with 3 additions and 3 deletions
|
@ -1422,7 +1422,7 @@
|
|||
var columns_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'holdingst', 'json' ) %];
|
||||
|
||||
KohaTable("#holdingst", {
|
||||
dom: 'B<"clearfix">t',
|
||||
dom: '<"clearfix">t',
|
||||
"columnDefs": [
|
||||
{ "targets": [ -1 ], "sortable": false, "searchable": false },
|
||||
{ "type": "title-string", "targets" : [ "title-string" ] }
|
||||
|
@ -1431,7 +1431,7 @@
|
|||
}, columns_settings);
|
||||
|
||||
KohaTable("#otherholdingst", {
|
||||
dom: 'B<"clearfix">t',
|
||||
dom: '<"clearfix">t',
|
||||
"columnDefs": [
|
||||
{ "targets": [ -1 ], "sortable": false, "searchable": false },
|
||||
{ "type": "title-string", "targets" : [ "title-string" ] }
|
||||
|
@ -1442,7 +1442,7 @@
|
|||
var serial_column_settings = [% ColumnsSettings.GetColumns( 'opac', 'biblio-detail', 'subscriptionst', 'json' ) %];
|
||||
|
||||
KohaTable("#subscriptionst", {
|
||||
dom: 'B<"clearfix">t',
|
||||
dom: '<"clearfix">t',
|
||||
"columnDefs": [
|
||||
{ "type": "title-string", "targets" : [ "title-string" ] }
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue