[jQuery] Re: tablesorter bug: th with colspan

2009-05-30 Thread franzo
I haven't got a fix, but I have more information. The example on tablesorter.com that uses colspans works, but it is using an old 2.0 version of tablesorter. The example on tablesorter.com doesn't work on 2.0.3. The suggested change below doesn't work with multiple rows of THs. On May 4, 6:47 

[jQuery] Re: tablesorter bug? How can I use tablesorter plugin to sort float?

2009-05-27 Thread devdoer
Thanks. I've found the parser example documentation. http://tablesorter.com/docs/example-parsers.html On 5月26日, 下午12时07分, devdoer devdo...@gmail.com wrote: Thanks. Is there any demo parser example I can learn from ? I am a new beginner of JS and of cource jquery On 5月23日, 上午12时09分,

[jQuery] Re: tablesorter bug? How can I use tablesorter plugin to sort float?

2009-05-25 Thread devdoer
Thanks. Is there any demo parser example I can learn from ? I am a new beginner of JS and of cource jquery On 5月23日, 上午12时09分, aquaone aqua...@gmail.com wrote: You will need to write your own custom parser. The numeric sorter won't detect nor handle scientific notation. aquaone On Thu,

[jQuery] Re: tablesorter bug? How can I use tablesorter plugin to sort float?

2009-05-22 Thread aquaone
You will need to write your own custom parser. The numeric sorter won't detect nor handle scientific notation. aquaone On Thu, May 21, 2009 at 20:22, devdoer devdo...@gmail.com wrote: HI: I found tablesorter plugin failed to sort the float if the float is in scientific notation? Eg.

[jQuery] Re: tablesorter bug?

2008-04-30 Thread Carl Von Stetten
After making changes to the table, use this instead: $('#myTable').trigger(update); // rebuilds the tablesorter data cache If you have added rows and need to resort, try either this: $(#myTable).trigger(sorton,[sorting]); // where [sorting] is the JS array of the sorting column info (see

[jQuery] Re: tablesorter bug?

2008-04-30 Thread A13thGuest
This worked like a charm! Thank you! $('#myTable').trigger(update); // rebuilds the tablesorter data cache Carl Von Stetten wrote: After making changes to the table, use this instead: $('#myTable').trigger(update); // rebuilds the tablesorter data cache If you have added rows and need to