Hallé la solución
Código PHP:
//ORIGINAL del tablesorter.js
ts.addParser({
id: "currency",
is: function (s) {
return /^[£$€?.]/.test(s);
}, format: function (s) {
return $.tablesorter.formatFloat(s.replace(new RegExp(/[,£$€]/g), ""));//agregué la coma en la expreción regular y listo!
}, type: "numeric"
});
ts.addParser({
id: "digit",
is: function (s, table) {
var c = table.config;
return $.tablesorter.isDigit(s, c);
}, format: function (s) {
return $.tablesorter.formatFloat(s.replace(new RegExp(/[,]/g), ""));//agregué la coma en la expreción regular y listo!
}, type: "numeric"
});