tablesort
tablesort copied to clipboard
Sorting is applied to a wrong column when using colspan
See http://jsfiddle.net/jLLsr54n/2/ converted price is not sorted correctly)
Any update with this issue? I also have the same problem when having groups (using colspan) in my table it's incorrectly sorting the table, some records go to the other group depending to there alphabetical order or from lower to higher number. Demo: http://jsfiddle.net/ewdesk2w/
Same problem here
rowspan also makes things bork
I have the exact same problem as @robertpeter07.
Could this be fixed by checking if the cell exists before calling getInnerText(), on this line?
E.g.:
var cell = that.table.tBodies[0].rows[i].cells[column];
item = cell && getInnerText(cell) || '';