From 2eec9988522aadaee2b6ef5ad8643de2e9fb2b5f Mon Sep 17 00:00:00 2001 From: Darek L Date: Sun, 31 May 2020 21:53:59 +0200 Subject: [PATCH] sort link text not url I guess this not exists yet? --- sorting/linktext.js | 58 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 sorting/linktext.js diff --git a/sorting/linktext.js b/sorting/linktext.js new file mode 100644 index 0000000..283ca13 --- /dev/null +++ b/sorting/linktext.js @@ -0,0 +1,58 @@ +/** + * When sorting html links in a DataTable column you might + * want to sort it by link text not url. + * + * For example "asc" by text not html link code: + * + * 1 Link text + * 2 Link text + * 3 Link text + * + * @name linktext.js + * @summary Sort link text not url. + * @author Darek L https://github.com/dprojects + * + * @example + * + * gTable = $('#demo-table').DataTable({ + * "orderClasses": true, + * "responsive": true, + * "columnDefs": [ { "type": "linktext", "targets": 1 } ], + * "order": [1, "asc"] + * }); + * + * To change order later: + * + * gTable.order([1, 'desc']).draw(); + */ + +$.extend( $.fn.dataTableExt.oSort, { + "linktext-pre": function ( a ) { + return a.replace(/<[\s\S]*?>/g,"").replace(/\s/g,"").replace(".","").replace(",","");; + } +}); + +/** + * Version with 'asc' and 'desc, but + * later You have to use "desc" in this case not "dsc". + */ + +/* +$.extend( $.fn.dataTableExt.oSort, { + + "linktext-asc": function ( a, b ) { + + let x = a.replace(/<[\s\S]*?>/g,"").replace(/\s/g,"").replace(".","").replace(",",""); + let y = b.replace(/<[\s\S]*?>/g,"").replace(/\s/g,"").replace(".","").replace(",",""); + + return ((x < y) ? -1 : ((x > y) ? 1 : 0)); + }, + "linktext-desc": function ( a, b ) { + + let x = a.replace(/<[\s\S]*?>/g,"").replace(/\s/g,"").replace(".","").replace(",",""); + let y = b.replace(/<[\s\S]*?>/g,"").replace(/\s/g,"").replace(".","").replace(",",""); + + return ((x < y) ? 1 : ((x > y) ? -1 : 0)); + } +}); +*/