Plugin natural sorting in combination with hidden title search
Plugin natural sorting in combination with hidden title search
elmartino86
Posts: 4Questions: 0Answers: 0
Hi, Does anyone know how to achieve the natural sorting plugin in combination with the hidden title search?
Thanks in advance!
Thanks in advance!
This discussion has been closed.
Replies
jQuery.extend( jQuery.fn.dataTableExt.oSort, {
"title-natural-pre": function ( a ) {
return a.match(/title="(.*?)"/)[1].toLowerCase();
},
"title-natural-asc": function ( a, b ) {
return naturalSort(a,b);
},
"title-natural-desc": function ( a, b ) {
return naturalSort(a,b) * -1;
}
} );