I've tried the encode option, but get this strange error:

missing ; before statement
[Break on this error] :'sortNumericDesc');var e='e'+i;dynamicExp+='var '+e+' = 
'+s+'(a['+c+'],b['+c+']...

Also, I've created these parsers (might be useful for someone). Maby you should 
make custom parsers 
available at your hompepage?

$.tablesorter.addParser({
     id: 'percent',
     is: function(s) {
                return s.match(new RegExp(/%$/g));
     },
     format: function(s) {
                return $.tablesorter.formatFloat(s);
     },
     type: 'numeric'
});
$.tablesorter.addParser({
     id: 'currency',
     is: function(s) {
                return s.match(new RegExp(/^[£$?.]/g)) || s.match(new RegExp(/ 
[A-Z]{3}$/g));
     },
     format: function(s) {
                return $.tablesorter.formatFloat(s);
     },
     type: 'numeric'
});

Sam Collett wrote:
> On Jul 17, 2:57 pm, "Christian Bach" <[EMAIL PROTECTED]>
> wrote:
>> 2007/7/17, Rick Pasotto <[EMAIL PROTECTED]>:
>>
>>
>>
>>> On Tue, Jul 17, 2007 at 03:04:59PM +0200, Christian Bach wrote:
>>>> The new 2.0 release can be found here:
>>>> http://lovepeacenukes.com/tablesorter/2.0/
>>> Interesting that the packed version is twice as large as the unpacked. :-)
>> Yeah, packer doesn't  always work as expected :)
> 
> That's not the case for me (the sizes are mixed up on the page).
> 
> The normal one is 13.15 kb for me and the packed on is 6.73kb. If you
> pack using the Base62 encode option you can get it even smaller.
> 
> 

Reply via email to