From f62e13db6663e8215cc1c29b0a74c1e831c2c8d2 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 17 Jan 2019 16:48:27 +0000 Subject: [PATCH] Bug 22156: (17.11.x) 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. Signed-off-by: Jose-Mario Monteiro-Santos Signed-off-by: Katrin Fischer --- 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 1728fb0edf..6541c50f59 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 @@ -12,6 +12,7 @@ $(document).ready(function() { var osrlt = $("#osrlt").dataTable($.extend(true, {}, dataTablesDefaults, { "sPaginationType": "four_button", + "order": [[ 1, "asc" ]], "aoColumnDefs": [ { 'bSortable': false, "bSearchable": false, 'aTargets': [ 'NoSort' ] }, { "sType": "title-string", "aTargets" : [ "title-string" ] }, @@ -22,6 +23,7 @@ var csrlt = $("#csrlt").dataTable($.extend(true, {}, dataTablesDefaults, { // FIXME sort function of additional_fields! "sPaginationType": "four_button", + "order": [[ 1, "asc" ]], "aoColumnDefs": [ { 'bSortable': false, 'aTargets': [ 'NoSort' ] }, { 'sType': "anti-the", 'aTargets' : [ 'anti-the'] } -- 2.11.0