@@ -, +, @@ patron search - In the first column containing checkboxes, click in the empty part of the table cell. The checkbox should be checked. - However, the "Add to patron list" button remains disabled. - Clicking a table cell to check another checkbox should result in the "Merge selected patrons" button being enabled, but it doesn't. --- koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt | 1 + 1 file changed, 1 insertion(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/member.tt @@ -586,6 +586,7 @@ var $checkbox = $(this).find("input[type=checkbox]"); if (e.target.type != "checkbox") { $checkbox.prop('checked', !$checkbox.prop("checked")); + $checkbox.change(); } }); --