From b9fc3537f1cfc29dd9eb3d081448be974a1bb06a Mon Sep 17 00:00:00 2001 From: duongtd96 Date: Thu, 10 Jan 2019 17:18:25 +0700 Subject: [PATCH] sort html column type for utf8 text - Solve #415 --- sorting/intl.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sorting/intl.js b/sorting/intl.js index cb92041..8d81688 100644 --- a/sorting/intl.js +++ b/sorting/intl.js @@ -79,6 +79,15 @@ $.fn.dataTable.ext.order.intl = function ( locales, options ) { types.order['string-desc'] = function ( a, b ) { return collator.compare( a, b ) * -1; }; + + // only compare inner text + delete types.order['html-pre']; + types.order['html-asc'] = function (a, b) { + return collator.compare( $(a)[0].innerHTML, $(b)[0].innerText ); + } + types.order['html-desc'] = function ( a, b ) { + return collator.compare( $(a)[0].innerHTML, $(b)[0].innerText ) * -1; + }; } };