From 69876a9602609806490c74bc05d726d2ab27feb4 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. Signed-off-by: Sam Lau Signed-off-by: Martin Renvoize --- 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 279538bc7c2..b9b4c05e46e 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 @@ -575,7 +575,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.45.2