Contents
TableSorterPlugin
Description
TableSorterPlugin adds the tablesorter jQuery plugin for turning HTML tables with THEAD and TBODY tags into a sortable table without page refreshes.
Bugs/Feature Requests
Existing bugs and feature requests for TableSorterPlugin are here.
If you have any issues, create a new ticket.
Download
Download the zipped source from here.
Source
You can check out TableSorterPlugin from here using Subversion, or browse the source with Trac.
Example
The tablesorter plugin requires a THEAD tag, which is not added to normal wiki tables, so use WikiHtml instead. The class tablesorter is also required:
{{{#!html
<table id="myTable" class="tablesorter">
<thead>
<tr>
<th>Last Name</th>
<th>First Name</th>
<th>Email</th>
<th>Due</th>
</tr>
</thead>
<tbody>
<tr>
<td>Smith</td>
<td>John</td>
<td>jsmith@gmail.com</td>
<td>$50.00</td>
</tr>
<tr>
<td>Bach</td>
<td>Frank</td>
<td>fbach@yahoo.com</td>
<td>$50.00</td>
</tr>
<tr>
<td>Doe</td>
<td>Jason</td>
<td>jdoe@hotmail.com</td>
<td>$100.00</td>
</tr>
<tr>
<td>Conway</td>
<td>Tim</td>
<td>tconway@earthlink.net</td>
<td>$50.00</td>
</tr>
</tbody>
</table>
}}}
Recent Changes
[11394] by psuter on 03/17/12 08:59:57
TableSorterPlugin: Initial hack
[11393] by psuter on 03/17/12 08:46:56
New hack TableSorterPlugin, created by psuter
Author/Contributors
Attachments
- tableSorterPlugin-screenshot.2.png (33.7 kB) -
Example screenshot
, added by psuter on 03/17/12 11:22:43. - tableSorterPlugin-screenshot.png (30.0 kB) -
Example screenshot
, added by psuter on 03/17/12 11:25:09.


