From 67f18ea834ca1fd99fe936013df6dccfa01f84de 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 Signed-off-by: Katrin Fischer --- 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 279538bc7c..b9b4c05e46 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.20.1