Bug 5345: DataTables integration in acquisition module [4]
authorJonathan Druart <jonathan.druart@biblibre.com>
Fri, 17 Feb 2012 14:56:08 +0000 (15:56 +0100)
committerPaul Poulain <paul.poulain@biblibre.com>
Fri, 25 May 2012 15:28:53 +0000 (17:28 +0200)
basket.tt

Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Columns for 'Modify' and 'Delete' are sortable, which doesn't hurt but could be removed.

http://bugs.koha-community.org/show_bug.cgi?id=8109

koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt

index 1f71a95..b3244e2 100644 (file)
@@ -1,20 +1,14 @@
 [% USE KohaDates %]
 [% INCLUDE 'doc-head-open.inc' %]
 <title>Koha &rsaquo; Acquisitions &rsaquo; [% UNLESS ( basketno ) %]New [% END %][% IF ( delete_confirm ) %]Delete [% END %]Basket [% basketname|html %] ([% basketno %]) for [% name|html %]</title>
+<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
 [% INCLUDE 'doc-head-close.inc' %]
+<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
+[% INCLUDE 'datatables-strings.inc' %]
+<script type="text/javascript" src="[% themelang %]/js/datatables.js"></script>
 [% UNLESS ( closedate ) %]
-<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
 <script type="text/javascript">
 //<![CDATA[
-    $(document).ready(function() {
-        $("#orders").tablesorter({
-            headers: {
-                9: { sorter: false },
-                10: { sorter: false }
-            }
-        });
-        $("#cancelledorderst").tablesorter();
-    });
             function confirm_close() {
                 var is_confirmed = confirm(_('Are you sure you want to close this basket?'));
                 if (is_confirmed) {
 </script>
 [% END %]
 [% END %]
+<script type="text/javascript">
+//<![CDATA[
+    $(document).ready(function() {
+        var orderst = $("#orders").dataTable($.extend(true, {}, dataTablesDefaults, {
+            "sPaginationType": "four_button"
+        } ) );
+        var cancelledorderst = $("#cancelledorderst").dataTable($.extend(true, {}, dataTablesDefaults, {
+            "sPaginationType": "four_button"
+        } ) );
+    } );
+//]]>
+</script>
+
 <style type="text/css">
 .sortmsg {font-size: 80%;}
 </style>