Bug 7298: (follow-up) fix checkboxes binding on load
authorJonathan Druart <jonathan.druart@biblibre.com>
Tue, 13 Aug 2013 13:27:38 +0000 (15:27 +0200)
committerGalen Charlton <gmc@esilibrary.com>
Thu, 31 Oct 2013 15:50:29 +0000 (15:50 +0000)
Click on checkboxes should be bound on load.

Signed-off-by: sonia <koha@univ-lyon3.fr>
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt

index 812f73d..b4a02e1 100644 (file)
@@ -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();});