From 89d951c855c0e3c8e6647e2264dab505a5767873 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 13 Aug 2013 15:27:38 +0200 Subject: [PATCH] Bug 7298: (follow-up) fix checkboxes binding on load Click on checkboxes should be bound on load. Signed-off-by: sonia Signed-off-by: Katrin Fischer Signed-off-by: Galen Charlton --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt index 812f73d59c..b4a02e1ae3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt @@ -38,6 +38,7 @@ $(document).ready(function() { }; } } ) ); + $('input:checkbox[name=ordernumber]').bind('click', check_uncheck); $('#CheckAll').click(function(){ $(late_orderst.fnGetNodes()).find("td").checkCheckboxes();}); $('#CheckNone').click(function(){ $(late_orderst.fnGetNodes()).find("td").unCheckCheckboxes();}); -- 2.39.5