@@ -, +, @@ "Select all" option - 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. --- koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt @@ -342,11 +342,11 @@ }); $("#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(); --