Bugzilla – Attachment 116832 Details for
Bug 27680
API DataTables Wrapper fails for ordering on multi-data-field columns
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27680: Add multi-field support
Bug-27680-Add-multi-field-support.patch (text/plain), 1.90 KB, created by
Martin Renvoize (ashimema)
on 2021-02-12 14:07:38 UTC
(
hide
)
Description:
Bug 27680: Add multi-field support
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-02-12 14:07:38 UTC
Size:
1.90 KB
patch
obsolete
>From 318d4f2f97fb43a201b573be8973b60c2d3bc621 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >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 7d64b907d5..e264b0c342 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/datatables.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/datatables.js >@@ -541,6 +541,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) { >@@ -637,9 +638,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
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 27680
:
116794
|
116795
|
116796
|
116829
|
116831
|
116832
|
116833
|
116834
|
116843
|
116844
|
116845
|
116846
|
117335
|
117336
|
117337
|
117338
|
117339
|
117340
|
117341
|
117375
|
117388
|
117389
|
117390
|
117391
|
117392
|
117393
|
117394
|
117438
|
117439
|
117440
|
117441
|
117442
|
117476