Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/02/2011, 11:11
Avatar de cotopaxi
cotopaxi
 
Fecha de Ingreso: noviembre-2009
Ubicación: Guadalajara, Jalisco
Mensajes: 20
Antigüedad: 15 años
Puntos: 1
Respuesta: Problemas con la Libreria jquery.tablesorter + number_format de PHP

Hallé la solución

Código PHP:

//ORIGINAL del tablesorter.js

ts.addParser({
        
id"currency",
        
is: function (s) {
            return /^[&
#163;$€?.]/.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 (stable) {
            var 
table.config;
            return $.
tablesorter.isDigit(sc);
        }, 
format: function (s) {
            return $.
tablesorter.formatFloat(s.replace(new RegExp(/[,]/g), ""));//agregué la coma en la expreción regular y listo!
        
}, type"numeric"
    
}); 

Última edición por cotopaxi; 23/02/2011 a las 11:27