From a09364690f1a1cd3d9dabdf3da76e8f7fda8a2d0 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 17 Jan 2019 16:39:52 +0000 Subject: [PATCH] Bug 22156: Subscription result list sorts on "checkbox" by default This patch adds default sorting by title to the subscription search results list. Previously no default sort was defined, so it defaulted to sorting by the first column in the table. To test, apply the patch and go to Serials. - Perform a search of subscriptions which will return multiple results. - Confirm that the table of open subscriptions is sorted by default by title ascending. - Confirm the same for the table of closed subscriptions. --- koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt index b6c7183..0de8741 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt @@ -445,6 +445,7 @@ $(document).ready(function() { var osrlt = $("#opened table").dataTable($.extend(true, {}, dataTablesDefaults, { "sPaginationType": "four_button", + "order": [[ 2, "asc" ]], "aoColumnDefs": [ { 'bSortable': false, "bSearchable": false, 'aTargets': [ 'NoSort' ] }, { "sType": "title-string", "aTargets" : [ "title-string" ] }, @@ -454,6 +455,7 @@ var csrlt = $("#closed table").dataTable($.extend(true, {}, dataTablesDefaults, { // FIXME sort function of additional_fields! + "order": [[ 2, "asc" ]], "sPaginationType": "four_button", "aoColumnDefs": [ { 'bSortable': false, 'aTargets': [ 'NoSort' ] }, -- 2.1.4