Bug 15583 - List of lists in the staff client should have a default sort
authorChloe <chloealabaster@gmail.com>
Wed, 20 Jan 2016 23:08:25 +0000 (23:08 +0000)
committerBrendan A Gallagher <brendan@bywatersolutions.com>
Wed, 27 Jan 2016 05:34:09 +0000 (05:34 +0000)
To Test:

1- first make sure you have lists from different dates,
   -- if you dont you can go to databases and change the created_on date
   (by changing the date on the database you can also ensure that the
    shelfnumber doesn't align with the creation date, replicating the
   bug being fixed.)
2- after making lists apply patch and refresh page, the lists should be
   sorted by creation date by default instead of by the "shelfnumber"

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt

index 7f1e848..f2410a1 100644 (file)
@@ -37,6 +37,8 @@ $(document).ready(function(){
         var type = [% PRIVATE %];
     [% END %]
     var dtListResults = $("#listresultst").dataTable($.extend(true, {}, dataTablesDefaults, {
+
+       "aaSorting": [[ 5, "asc" ]],
         'bServerSide': true,
         'sAjaxSource': "/cgi-bin/koha/svc/virtualshelves/search",
         'fnServerData': function(sSource, aoData, fnCallback) {