Bug 10184 - Circulation History reverses sort order
authorColin Campbell <colin.campbell@ptfs-europe.com>
Fri, 3 May 2013 14:35:44 +0000 (15:35 +0100)
committerGalen Charlton <gmc@esilibrary.com>
Tue, 28 May 2013 15:05:31 +0000 (08:05 -0700)
Issue data is passed to the readingrec template ordered
most recent due date first. Datatables unless specified
otherwise do a presort on the data they will display
the default results in an order the reverse of what was
intended. Disabling the presort preserves the initial sort
order until the user selects a different sort

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt

index 3240421..6084357 100644 (file)
@@ -14,6 +14,7 @@
     [% END %]
     $("#table_readingrec").dataTable($.extend(true, {}, dataTablesDefaults, {
         "sPaginationType": "four_button",
+        "aaSorting": []
     }));
  });
 //]]>