From 21db1c51fea8d185f67c96748c89c39c15fcb022 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 4 Jun 2024 14:35:17 +0000 Subject: [PATCH] Bug 37027: Remove unnecessary dataTable controls from SCO tables To test: 1. Have a patron with some checkouts, holds, and charges that can login into the SCO module. 2. Notice the dataTable controls for searching the table, copying the table, exporting as CSV, or printing. 3. APPLY PATCH 4. Try step 2 again, this time the only dataTable control should be the search filter. --- koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt index 24c0e194ac..0b367e313d 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt @@ -574,7 +574,7 @@ var thIndex = $(this).find("th.psort").index(); $(this).dataTable($.extend(true, {}, dataTablesDefaults, { "sorting" : [[ thIndex, 'asc' ]], - "dom": '<"top"<"table_entries"><"table_controls"fB>>t', + "dom": '<"top"<"table_entries"><"table_controls"f>>t<"clear">', "columnDefs": [ { "targets": [ "nosort" ],"sortable": false,"searchable": false }, { "targets": [ "noshow" ], "visible": false, "searchable": false }, -- 2.39.2