the "format" for the currency parser is: return $.tablesorter.formatFloat(s.replace(new RegExp(/[^0-9.]/g),""));
It will not handle negative values for currency. You will have to write your own parser. stephen On Sun, Mar 1, 2009 at 23:12, jason <jason.novo...@gmail.com> wrote: > > Hi, > > I have a column with values $4.50, $127.00, -$130.00, -15.76 and the > sorting > doesn't work. It works fine if all values are positive, however. Does > anyone > have any idea how to fix this? For now I just have to eliminate the > "$" in > order for it to work. > > Thanks, Jason >