[Koha-patches] [PATCH] Bug 9469 - Use Datatables in serials statistics wizard

Owen Leonard oleonard at myacpl.org
Wed Jan 23 20:37:27 CET 2013


Replace the tablesorter plugin with the DataTables plugin on the
serials staitsics wizard report.

To test, run the serials statistics wizard (Reports -> Serials). Confirm
that table sorting works correctly.
---
 .../prog/en/modules/reports/serials_stats.tt       |   15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt
index 65f662f..47baf2c 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt
@@ -4,13 +4,18 @@
 <style type="text/css">
 	.sql {display: none;}
 </style>
-<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
-<script type="text/JavaScript" language="JavaScript">
+<link rel="stylesheet" type="text/css" href="/intranet-tmpl/prog/en/css/datatables.css" />
+<script type="text/javascript" src="/intranet-tmpl/prog/en/lib/jquery/plugins/jquery.dataTables.min.js"></script>
+[% INCLUDE 'datatables-strings.inc' %]
+<script type="text/javascript" src="/intranet-tmpl/prog/en/js/datatables.js"></script>
+<script type="text/javascript">
 	//<![CDATA[
+        [% IF (dateformat == 'metric') %]dt_add_type_uk_date();[% END %]
 		$(document).ready(function() {
-    		$("#resulttable").tablesorter({
-    				widgets : ['zebra']
-    			});
+            $("#resulttable").dataTable($.extend(true, {}, dataTablesDefaults, {
+                "sDom": 't',
+                "bPaginate": false
+            }));
     	});
 	//]]>
 </script>
-- 
1.7.9.5


More information about the Koha-patches mailing list