Bug 26010: Remove the use of jquery.checkboxes plugin from staff interface cart
authorOwen Leonard <oleonard@myacpl.org>
Fri, 17 Jul 2020 17:29:15 +0000 (17:29 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 13 Aug 2020 05:55:42 +0000 (07:55 +0200)
This patch removes the use of the jquery.checkboxes plugin from the
staff interface cart and replaces its functionality with "plain" jQuery.

To test, apply the patch and add some items to the Cart in the staff
interface.

- Open the Cart window in the staff interface by clicking the "Cart"
  link in the header.
- Test that the "Select all" and "Clear all" links work correctly to
  check and uncheck all checkboxes.
- Test that the "Remove" or "Place hold" controls work correctly,
  applying to only the checked checkboxes whether they were checked
  using "Select all" or by manually checking them.

Signed-off-by: Sally <sally.healey@cheshiresharedservices.gov.uk>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt
koha-tmpl/intranet-tmpl/prog/js/cart.js

index d110dcb..0503662 100644 (file)
     [% INCLUDE js_includes.inc %]
     [% INCLUDE 'datatables.inc' %]
     [% Asset.js("js/cart.js") | $raw %]
-    [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
 
     </body>
 </html>
index 923ed32..fbf97fb 100644 (file)
@@ -66,24 +66,21 @@ function batchModify(){
 
 $(document).ready(function(){
     $("#items-popover").popover();
-    $("#CheckAll").click(function(){
-    var checked = [];
-    $("#bookbag_form").checkCheckboxes("*", true).each(
-        function() {
-            $(this).change();
-        }
-    );
-        return false;
+
+    $("#CheckAll").click(function (e) {
+        e.preventDefault();
+        $(".select_record").each(function () {
+            $(this).prop("checked", true).change();
+        });
     });
-    $("#CheckNone").click(function(){
-    var checked = [];
-    $("#bookbag_form").unCheckCheckboxes("*",true).each(
-        function() {
-            $(this).change();
-        }
-    );
-        return false;
+
+    $("#CheckNone").click(function (e) {
+        e.preventDefault();
+        $(".select_record").each(function () {
+            $(this).prop("checked", false).change();
+        });
     });
+
     $(".holdsep").text("| ");
     $(".hold").text(_("Place hold"));
     $("#downloadcartc").empty();