@@ -, +, @@ 20 exist - Navigate to the second "page" of data in the DataTable. - Test the functionality of the "Mark seen" and "Mark unseen" buttons. They should work correctly. --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt @@ -166,7 +166,7 @@ } }); - $("button.seen, button.notseen").click(function(event){ + $("#notestable").on("click", "button.seen, button.notseen", function(event){ event.preventDefault(); // prevent form submission var $action = $(this).attr("name"); var $issue_id = $(this).data('issue_id'); --