[jQuery] Tablesorter

[jQuery] Tablesorter

-- errors
There are problems with your table sorter.
Create a sortable table with colspans and it will through lots of errors if
you fix those then it will work fine.
-- feature request
What I would really like is sorting tables grouped by tbody
Ie each tbody would stay in the same place but the rows would sort inside
each tbody except for tr's with class='tablesort-ignore'
If the r used the class='tablesort-up-down' then you could move the tbodys
up and down the table with (drag/drop) or (arrows pointing up and down).
Which would hold your tbody header information
Example:
thead
    tr
        th ...
        th ...
        th ...
    /tr
/thead
tbody
    tr class=ignore
        <td colspan ='3' >my first category</td>
    /tr
    tr
        td ...
        td ...
        td ...
    /tr
/tbody
tbody
    tr class=ignore
        <td colspan ='3' >my second category</td>
    /tr
    tr
        td ...
        td ...
        td ...
    /tr
/tbody
tbody
    tr class=ignore
        <td colspan ='3' >my ... category</td>
    /tr
    tr
        td ...
        td ...
        td ...
    /tr
/tbody
Adrian Sweeney
Web Developer
Mills & Reeve
Tel: +44(0)121 456 8236
mailto:adrian.sweeney@mills-reeve.com
http://www.mills-reeve.com
-----Original Message-----
From: Christian Bach [mailto:christian.bach@polyester.se]
Sent: 19 October 2006 09:46
To: jQuery Discussion.
Subject: Re: [jQuery] Tablesorter
Hi!
1. I could provied a kind of trigger for you, how about something like this.
Ex.
$("myTableWithTableSorter").trigger("resort");
2. Well it depends how your table is structured and how big it is. Please
post a example.
/christian
Yehuda Katz