From c9514f0f5d7e55c0eef24b9250586085fd365452 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 12 Feb 2021 13:14:16 +0000 Subject: [PATCH] Bug 27680: Add multi-field support --- koha-tmpl/intranet-tmpl/prog/js/datatables.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/js/datatables.js b/koha-tmpl/intranet-tmpl/prog/js/datatables.js index e1ec488c40..ff7bc44b09 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/datatables.js +++ b/koha-tmpl/intranet-tmpl/prog/js/datatables.js @@ -534,6 +534,7 @@ jQuery.fn.dataTable.ext.errMode = function(settings, note, message) { 'type': 'GET', 'cache': true, 'dataSrc': 'data', + 'traditional': true, 'beforeSend': function(xhr, settings) { this._xhr = xhr; if(options.embed) { @@ -630,9 +631,9 @@ jQuery.fn.dataTable.ext.errMode = function(settings, note, message) { order.forEach(function (e,i) { var order_col = e.column; var order_by = options.columns[order_col].data; - order_by = order_by.split(':')[0]; + order_by = order_by.split(':'); var order_dir = e.dir == 'asc' ? '+' : '-'; - dataSet._order_by = order_dir + (!order_by.includes('.')?'me.'+order_by:order_by); + dataSet._order_by = order_by.map(x => order_dir + (!x.includes('.')?'me.'+x:x)); }); } -- 2.20.1