Bug 21041: "Merge patrons" button remains disabled with "Select all" option
authorOwen Leonard <oleonard@myacpl.org>
Mon, 16 Jul 2018 17:24:04 +0000 (17:24 +0000)
committerNick Clemens <nick@bywatersolutions.com>
Wed, 8 Aug 2018 20:52:31 +0000 (20:52 +0000)
This patch modifies the JavaScript functions for the select all/clear
all links so that each action triggers the "change" event, required to
enable or disabled the "merge selected patrons" button.

To test, apply the patch and perform a patron search which will return
multiple results.

 - Test the "select all" and "clear all" links, and confirm that the
   "Merge selected patrons" button is enabled and disabled.
 - Test that checking and unchecking multiple checkboxes still works
   correctly to enable and disable the button.

Signed-off-by: Pierre-Luc Lapointe <pierreluc.lapointe@inLibro.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt

index fb62cb9..71c6363 100644 (file)
             });
             $("#select_all").on("click",function(e){
                 e.preventDefault();
-                $(".selection").prop("checked", true);
+                $(".selection").prop("checked", true).change();
             });
             $("#clear_all").on("click",function(e){
                 e.preventDefault();
-                $(".selection").prop("checked", false);
+                $(".selection").prop("checked", false).change();
             });
             $("#clear_search").on("click",function(e){
                 e.preventDefault();