Table Sorting, Filtering etc. from JavaScript Toolbox
Posted on December 24, 2008, Filled under JavaScript,
Bookmark it
Tabular data in table form is very common in web sites and web applications, a common requirement being the manipulation of table data on the client side. It is a better alternative than going back to the server, to sort, filter etc.
Here are some key features of the library that I found on JavaScript Toolbox.
- Fast Sorting due to a number of optimizations
- Rowspan and Colspan in headers that do not confuse the code
- Alternate row colors, handled by re-shading after sorting or filtering
- Tbody contents are handled separately, so there can be separate sortable sections of a table
- Easy CSS classes are applied to cells after filtering, sorting, etc which you can hook into from your CSS rules to show the sorted column or the cells which are filtered.
Client-Side Table Sorting Basic Example

Client-Side Table Filtering with alternate rows containing names starting with “Ma”

Click here to view live examples!
Do you wish to receive the latest updates as soon as they are posted? Get our RSS Feed or Subscribe to the Newsletter!
- December 24, 2008
- article by Gabriel C.
- Leave a reply!
Related Posts
Advanced Lightweight JavaScript Table Sorter: TinyTable V3at November 19, 2009
Sort your HTML Tables with AJAX & JavaScriptat March 10, 2009
Powerful AJAX-enabled DHTML JavaScript Grid Control: dhtmlxGridat January 7, 2010
Add Interactive JavaScript Charts to Your Site Using Highchartsat December 4, 2009 with 1 comment
Get maximum ID from a tableat August 30, 2008 with 1 comment

