On 2.1.19, when sorting a date column where the values was empty (which would be at the bottom of the list by default), however the dataset of the empty values would be sorted.
Now on 2.13.13, the empty value dataset are no longer sorted... how do i return this back to how it was in 2.1.19?
Curious to know if there was an option that got changed / something got broken.
$(document).ready(function(){
$("#showListTable:has(tbody tr)").tablesorter({
sortList: [[5,1],[1,0]],
textExtraction: {
3: function(node) { return $(node).find("span").text().toLowerCase(); },
4: function(node) { return $(node).find("span").text(); },
5: function(node) { return $(node).find("img").attr("alt"); }
},
widgets: ['saveSort', 'zebra', 'stickyHeaders'],
headers: {
0: { sorter: 'isoDate' },
1: { sorter: 'loadingNames' },
3: { sorter: 'quality' },
4: { sorter: 'eps' }
}
});
});
On 2.1.19, when sorting a date column where the values was empty (which would be at the bottom of the list by default), however the dataset of the empty values would be sorted.
Now on 2.13.13, the empty value dataset are no longer sorted... how do i return this back to how it was in 2.1.19?
Curious to know if there was an option that got changed / something got broken.