Jquery Plugin for table sorting and freezing column headers
HI,
I am looking for a single jquery plugin that can sort the table and also freeze the column headers and works in IE, FF and Chrome. I have found tablesorter plug-in that works great for sorting and fxHeader that works great for freezing column headers, but when I use both of them together there are issues. My table structure is something like this.
<table>
<thead>
<tr><td colspan="2">Header 1</td><td colspan="2" Header 2</td></tr>
<tr><th>Rank</th><th>Value</th><th>Rank</th><th>Value</th></tr>
</thead>
<tbody>
<tr><td>Rank 1</td><td>Value 1</td><td>Rank 11</td><td>Value 21</td></tr>
<tr><td>Rank 2</td><td>Value 2</td><td>Rank 22</td><td>Value 22</td></tr>
<tr><td>Rank 3</td><td>Value 3</td><td>Rank 33</td><td>Value 23</td></tr>
</tbody>
</table>
I need to freeze the first two rows but be able to sort on Rank and Value.
Please help.
Thanks