Bugzilla – Attachment 67138 Details for
Bug 19021
Inventory column sorting
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19021 - inventory column sorting
Bug-19021---inventory-column-sorting.patch (text/plain), 2.31 KB, created by
Fridolin Somers
on 2017-09-14 14:49:48 UTC
(
hide
)
Description:
Bug 19021 - inventory column sorting
Filename:
MIME Type:
Creator:
Fridolin Somers
Created:
2017-09-14 14:49:48 UTC
Size:
2.31 KB
patch
obsolete
>From e8c5c0bf9e9fcd3374f6fca70682e8cd64c48bfc Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Wed, 2 Aug 2017 10:35:49 +0200 >Subject: [PATCH] Bug 19021 - inventory column sorting > >In inventory result page, items are shown in a JS DataTable. >For an inventory with barcode file second column is not sortable for no reason. >For an inventory without barcode file first column is not sortable but since it is the default sort order the sorting icon is still displayed. > >This patch corrects by setting default sort order on callnumber column. > >Test plan : >- perform inventory with barcode file >- look at result table >- table is sorted by callnumber >=> Without patch second column is not sortable >=> With patch all columns are sortable >- perform inventory without barcode file >- look at result table >=> Without patch first column show sort icon and table is not sorted by callnumber >=> With patch first column is not sortable and table is sorted by callnumber >--- > koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt | 10 ++++++++-- > 1 file changed, 8 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >index 6fcbff8..838760f 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/inventory.tt >@@ -33,9 +33,15 @@ $(document).ready(function(){ > inventorydt = $('#inventoryt').dataTable($.extend(true, {}, dataTablesDefaults, { > 'sPaginationType': 'full_numbers', > [% IF compareinv2barcd %] >- "aoColumnDefs": [ { "bSortable": false, "aTargets": [ 1 ] } ], >+ // sort on callnumber >+ "aaSorting": [[ 1, "asc" ]], > [% ELSE %] >- "aoColumnDefs": [ { "bSortable": false, "aTargets": [ 0 ] } ], >+ // first column contains checkboxes >+ "aoColumnDefs": [ >+ { "bSortable": false, "bSearchable": false, "aTargets": [ 0 ] }, >+ ], >+ // 3rd column is callnumber >+ "aaSorting": [[ 2, "asc" ]], > [% END %] > 'fnDrawCallback': function() { > //bind the click handler script to the newly created elements held in the table >-- >2.7.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 19021
:
65413
|
65417
|
65424
|
67138
|
67804
|
68715