Bugzilla – Attachment 96801 Details for
Bug 24337
Checkout note cannot be marked seen if more than 20 exist
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24337: Checkout note cannot be marked seen if more than 20 exist
Bug-24337-Checkout-note-cannot-be-marked-seen-if-m.patch (text/plain), 1.59 KB, created by
Owen Leonard
on 2020-01-03 20:09:06 UTC
(
hide
)
Description:
Bug 24337: Checkout note cannot be marked seen if more than 20 exist
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2020-01-03 20:09:06 UTC
Size:
1.59 KB
patch
obsolete
>From 1bda081136a2ee6001e6461d9c6fc212f0d8cdef Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Fri, 3 Jan 2020 20:02:26 +0000 >Subject: [PATCH] Bug 24337: Checkout note cannot be marked seen if more than > 20 exist > >This patch modifies the event handler on the individual "Mark seen" / >"Mark unseen" buttons in the table of checkout notes. For an event to be >successfully attached to a hidden element it must be given a context. > >To test you should have multiple checkout notes to work with, both seen >and unseen. Apply the patch and go to "Checkout notes pending" from the >staff client home page. > > - 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(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt >index 08d262d15cd..360a46ff089 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt >+++ b/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'); >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 24337
:
96801
|
96802
|
97173