Github fork of Christian Bach's tablesorter plugin + awesomeness ~
Go to file
2012-06-05 07:18:14 -05:00
addons/pager ie speed optimization 2012-05-28 10:01:40 -05:00
css filter widget functions 2012-06-01 09:49:46 -05:00
docs filter widget functions 2012-06-01 09:49:46 -05:00
js fixed invalid regex errors entered into the filter widget - issue #87 2012-06-05 07:18:14 -05:00
changelog.txt Added emptyToBottom option 2012-04-12 17:05:28 -05:00
index.html added usNumberFormat option 2012-03-12 18:33:56 -05:00
package.json cleaned up replaceAccents function 2012-06-03 14:09:18 -05:00
README.markdown cleaned up replaceAccents function 2012-06-03 14:09:18 -05:00

tablesorter is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell.

Documentation

Demos

Features

  • Multi-column sorting.
  • Multi-tbody sorting - see the options table on the main document page.
  • Parsers for sorting text, alphanumeric text, URIs, integers, currency, floats, IP addresses, dates (ISO, long and short formats) & time. Add your own easily.
  • Support for ROWSPAN and COLSPAN on TH elements.
  • Support secondary "hidden" sorting (e.g., maintain alphabetical sort when sorting on other criteria).
  • Extensibility via widget system.
  • Cross-browser: IE 6.0+, FF 2+, Safari 2.0+, Opera 9.0+.
  • Small code size.
  • Works with jQuery 1.2.6+.

Licensing

Change Log

View the complete listing here.

Version 2.3.7 (6/3/2012)

  • Updated $.tablesorter.replaceAccents() function to be independent of the table.
    • It was originally table dependent to allow making tables with different languages. I'll have to add another table option to allow this, if the need arises.
    • Modified as suggested in issue #81.
  • Fixed the url parser is function to properly detect complete urls.
  • Fixed an issue with the updateCell method incorrectly targeting the cell when there was more than one row in the header. Fix for issue #83.

Version 2.3.6 (6/1/2012)

  • Made the following enhancements to the filter widget:
    • Include placeholder text in the filter input boxes by adding data-placeholder with the text to the header cell; e.g. data-placeholder="First Name". See the examples in the filter widget demo.
    • Exact match added. Add a quote (single or double) to the end of the string to find an exact match. In the first column enter Clark" to only find "Clark" and not "Brandon Clark".
    • Wild cards added:
      • ? (question mark) finds any single non-space character.
        In the discount column, adding 1?% in the filter will find all percentages between "10%" and "19%". In the last column, J?n will find "Jun" and "Jan".
      • * (asterisk) finds multiple non-space characters.
        In the first column below Enter Br* will find multiple names starting with "Br". Now add a space at the end, and "Bruce" will not be included in the results.
    • Regex added. Search columns using regex. For example enter /20[^0]\d/ in the last column to find all date greater than 2009.
    • Added filter_functions option which allows you to add a select dropdown to the specified column that either gathers the options from the column contents or obtains options from custom function settings. Additionally, you can use this option to apply a custom filter function to the column. For more details, see the new custom filter widget demo.

Version 2.3.5 (5/28/2012)

  • Fixed colspan in header causing javascript errors and metadata issues. Fix for issue #78.
  • Fixed Chrome "Uncaught RangeError" issue. Fix for issue #70.
  • Added more optimizations to speed up IE (except IE7):
    • Hide tbody during manipulation - added "tablesorter-hidden" css definition.
    • Parsing of the table contents using textContent for modern browsers (including IE9); see this jsperf.
    • Columns widget.
    • Filter widget.
    • Zebra widget.
  • Updated the shortDate detection regex to look for two or four grouped digits instead of two through four digits. Fix for issue #76.
  • Widget updates:
    • Added initWidgets option
      • If true, all selected widgets (from the widgets option) will be applied after the table has initialized.
      • when false, selected widgets init function will be called, but not the format function. So none of the widget formating will be applied to the table. Note: almost all included widgets do not use the init function to keep backward compatibility, except for the saveSort widget in which the init function immediately calls the format function. This information is only important if you are writing a custom widget.
      • It would be useful to set this option to false if using the pager plugin along with a very large table, say 1000+ rows. The table will be initialized, but no widgets are applied. Then the pager plugin is called and the table is modified and all of the widgets are applied when completed. So essentially this saves time by only running the widgets once.
      • Modified the pager plugin to make sure it doesn't apply widgets more than once.
    • Added filter widget option filter_ignoreCase:
      • The default setting is true and all searches will be case insensitive.
      • Set this option to false to make the searches case sensitive.
    • Added filter widget option filter_searchDelay:
      • Default set to 300 milliseconds.
      • This is the delay before the filter widget starts searching.
      • This option prevents searching for every character while typing and should make searching large tables faster.
    • Resizable widget will no longer initialize a sort after releasing the mouse.
    • Updated ui theme css to remove bold fonts from odd rows.

Version 2.3.4 (5/20/2012)

  • Added selector change suggested by AnthonyM1229 in issue #74 to fix IE8 ignoring class name parsers. Thanks again Anthony for all of your hard work and input!

Version 2.3.3 (5/19/2012)

  • Fixed the method used to get data from jQuery data, meta data, header options or header class names.
    • This should fix the "filter-false" problem reported in issue #73,
    • and fix issue #74 with setting parsers by class name.
  • Performance improvements:
    • Modified the zebra and columns widget to use document fragments to modify changes to the table. I didn't log all of the times, but there was a speed increase in reported time when using the triggered events demo (1022 rows).
    • Changed the shortDate parser to cache header information.
  • Updated multiple demos to show how to set some options using jQuery data, class names, etc.

Version 2.3.2 (5/11/2012)

  • Added a method to remove tablesorter from a table
    • Use $('table').trigger('destroy'); to remove it.
    • Some classes applied by widgets will remain (zebra, columns, etc); but the functionality will be removed. I've been thinking about adding a "remove" function to each widget to specifically remove that widget.
    • Rows hidden by the filter widget will not reappear. I may work on an option to fix that in the future.
    • The "tablesorter" class is removed from the table; but if you want to leave this class, then use this example: $('table').trigger('destroy', [false]);.
  • Fixed percent parser to not be automatically applied to text columns. Fix for issue #67.
  • Fixed filter widget not working in v2.3.1. It was actually a problem with getting jQuery data breaking the widget.
  • The first tbody can now be an info block.
  • The zebra and column widgets should now properly ignore info blocks (it was missing periods in the class selectors!).
  • Text extracted from table cells is now automatically trimmed of extra spaces, tabs and carriage returns. If these elements are important to you, then please refer to the advanced use custom parser demo which allows you to access the table cell $(cell) directly.
  • Fixed and/or updated a bunch of demos:
    • Demos that include jQuery UI seem to need jQuery v1.4+ now or script errors will completely break the plugin. Updated ui theme and sticky headers widget demos.
    • Render headers demo now targets the div wrapping header cell contents. Previously it was a span.