bug 9916: (follow-up) restore default sort order for self-check loan list
To test: [1] Log into web-based selfcheck. [2] Enter the barcode of a patron that has at least two loans. [3] Verify that the loan list sorts them in order of descending due date by default, with a secondary sort order of ascending title. Signed-off-by: Galen Charlton <gmc@esilibrary.com>
This commit is contained in:
parent
7a967161dc
commit
7630e0b5ae
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ $(document).ready(function() {
|
|||
dofocus();
|
||||
[% IF ( patronid ) %]sco_init();[% END %]
|
||||
$("#loanTable").dataTable($.extend(true, {}, dataTablesDefaults, {
|
||||
"aaSorting": [[ 2, "asc" ]],
|
||||
"aaSorting": [ [2, "desc"], [0, "asc"] ],
|
||||
"aoColumnDefs": [
|
||||
{ "aTargets": [ "nosort" ],"bSortable": false,"bSearchable": false },
|
||||
{ "sType": "anti-the", "aTargets" : [ "anti-the" ] },
|
||||
|
|
Loading…
Reference in a new issue