Github fork of Christian Bach's tablesorter plugin + awesomeness ~
Go to file
2012-03-18 09:07:54 -05:00
addons/pager updated pager minified version 2012-03-17 22:18:11 -05:00
css widgets update 2012-03-07 12:06:35 -06:00
docs added $.tablesorter.version 2012-03-18 09:02:49 -05:00
js added $.tablesorter.version 2012-03-18 09:02:49 -05:00
changelog.txt updated change log 2012-03-18 09:07:54 -05:00
index.html added usNumberFormat option 2012-03-12 18:33:56 -05:00
package.json updated change log 2012-03-18 09:07:54 -05:00
README.markdown updated change log 2012-03-18 09:07:54 -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.

See the full documentation

###Demos

###Features

  • Multi-column sorting.
  • 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.3+

###Documentation

Included all original document pages with updates from my blog post on undocumented options.

###Licensing

###Change Log

View the complete listing here.

Version 2.1.4 (3/18/2012)

  • Modified widget scripts to not cause errors when older versions of jQuery are loaded.
  • Updated widget demos to include notes on minimum required jQuery verison.
  • Added $.tablesorter.version function which returns the current version number.

Version 2.1.3.1 (3/17/2012)

  • Merged in bug fixes contributed by Rozwell. Thanks!
  • Updated pager minified version, along with version numbers.

Version 2.1.3 (3/12/2012)

  • Added usNumberFormat option.

  • Set to true for U.S. number format: 1,234,567.89

  • Set to false for German 1.234.567,89 or French 1 234 567,89 formats.'

  • Fix for issue #34 and issue # 31.

  • Changed pager plugin ajax functions & demo

  • The ajaxProcessing function now must now return two or three pieces of information: [ total, rows, headers ]

  • total is the total number of rows in the database.

  • rows is an array of table rows with an array of table cells in each row.

  • headers is an array of header cell text (optional).

     ```javascript
     // process ajax so that the following information is returned:
     // [ total_rows (number), rows (array of arrays), headers (array; optional) ]
     // example:
     [
       // total # rows contained in the database 
       100,
       // row data: array of arrays; each internal array has the table data 
       [
         [ "row1cell1", "row1cell2", ... "row1cellN" ],
         [ "row2cell1", "row2cell2", ... "row2cellN" ],
          ...
         [ "rowNcell1", "rowNcell2", ... "rowNcellN" ]
       ],
       // header text (optional)
       [ "Header1", "Header2", ... "HeaderN" ]
     ]
     ```
    
  • Modified pager plugin ajax demo to hopefully make the data processing a bit more clear by changing data inside of the City#.json files to rows.

  • The demo json data should now render the unicode characters properly. Switched the files to the proper utf-8 encoding.

  • When no data is returned, the table will now:

    • Insert a row into the header showing the ajax error. If a row is inserted into the tbody, clicking on the header would cause a parser error.
    • Disable the pager so the pager counter won't show zero total rows.
    • Fix for issue dicussed within issue #31.

Version 2.1.2 (3/11/2012)

  • Added table and cellIndex variables to the textExtraction function to allow using a more general function for text extraction.
  • Empty cells will no longer skip the parser allowing extracting data attributes.
  • This was only an issue on table cells with no text.
  • Added a demo to the demos wiki page whichs allows dynamic sorting of checkboxes.

Version 2.1.1 (3/8/2012)

  • Renamed filter_fromStart to filter_startsWith.
  • Fixed an issue with sortRestart not working properly.
    • In turn, sortReset, lockOrder and sortInitialOrder were modified with this change and were made sure to all work properly.
    • The sortInitialOrder will work in either the main options or specifically within the headers option when a particular column needs a different initial sort order.
    • Added a sortReset/sortRestart demo.
    • Resolves issue #30.
  • Updated pager plugin to better work with the sticky header widget.

Version 2.1 (3/7/2012)

  • Added selectorRemove option

  • Any table row with this css class will be removed from the table prior to updating the table contents.

  • The reason this was added was in case a widget or some other script adds rows to the table for styling, or something else. If a table update is triggered ($(table).trigger('update');), all rows in the table will be included in the update.

  • The writing custom widgets demo has been updated to include this class name.

  • The pager plugin update also uses this to remove the row added by the new fixedHeight option.

  • It's default value is tr.remove-me, so it can be modified to remove more than just rows.

  • Fixed a bug that broke the plugin if you set sorter: true in the header options.

  • Pager plugin update

    • Ajax

      • The pager plugin will now interact with a database via JSON. See demo here.

      • Added ajaxUrl option which contains the variables {page} and {size} which will be replaced by the plugin to obtain that data.

        ajaxUrl : "http:/mydatabase.com?page={page}&size={size}"
        
      • Another option named ajaxProcessing was included to process the data before returning it to the pager plugin. Basically the JSON needs to contain the data to match the example below. An additional required variable is the total number of records or rows needs to be returned.

        // process ajax so that the data object is returned along with the total number of rows
        // example: { "data" : [{ "ID": 1, "Name": "Foo", "Last": "Bar" }], "total_rows" : 100 }
        ajaxProcessing: function(ajax){
          if (ajax && ajax.hasOwnProperty('data')) {
            // return [ "data", "total_rows" ];
            return [ ajax.data, ajax.total_rows ];
          }
        }
        
      • I tried to make the plugin interact with a database as flexible as possible, but I'm sure I haven't covered every situation. So any and all feedback is welcome!

      • Also, much thanks to kachar for the enhancement request and willingness to help test it!

    • Removed positionFixed and offset options.

    • Added fixedHeight option which replaces the positionFixed and offset options by maintaining the height of the table no matter how few rows are showing. During testing, it displayed some odd behaviour after adding or deleting rows, but it should have been fixed... just please keep an eye out ;).

    • The pager now adds all of its options to the table configuration options within an object named "pager". Basically what this means is that instead of add all of the pager options to be mixed in with the tablesorter options, the pager options have been isolated and can be found by typing this into the browser console: $('table')[0].config.pager.

  • Storage function added named $.tablesorter.storage for use in widgets

  • It is used by various widgets to save data to either local storage (if available) or cookies.

  • This function needs to use JSON.stringify() which is not supported by IE7. If you need to support IE7, then include this library: JSON-js.

  • Use the function with your own custom widgets as follows:

     ```javascript
     // *** Save data (JSON format only) ***
     // val must be valid JSON... use http://jsonlint.com/ to ensure it is valid
     var val = { "mywidget" : "data1" }; // valid JSON uses double quotes
     // $.tablesorter.storage(table, key, val);
     $.tablesorter.storage(table, 'tablesorter-mywidget', val);
    
     // *** Get data: $.tablesorter.storage(table, key); ***
     v = $.tablesorter.storage(table, 'tablesorter-mywidget');
     // val may be empty, so also check for your data
     val = (v && v.hasOwnProperty('mywidget')) ? v.mywidget : '';
     alert(val); // "data1" if saved, or "" if not
     ```
    
  • Added an option named widgetOptions:

  • This is a move to store all widget specific options in one place so as not to polute the main table options.

  • All current widgets have been modified to use this new option.

  • Only one widget option, widgetZebra will be retained for backwards compatibility with the original plugin.

  • More details for each widget are explained below.

  • Zebra widget:

  • Added zebra options to the new widgetOptions.

    widgetOptions : {
      zebra : [ "even", "odd" ]
    }
    
  • This replaces widgetZebra: { css: [ "even", "odd" ] }, but if the widgetZebra option exists, it will over-ride this newer widgetOptions.zebra option in order to maintain backwards compatibility.

  • UI Theme widget:

  • Changed css class of div wrapping the contents of each header cell from "inner" to "tablesorter-inner".

  • Added "ui-state-default" to the table head columns. Thanks to Raigen for sharing the code!

  • Moved widgetUitheme option into the new widgetOptions.

    widgetOptions : {
      // adding zebra striping, using content and default styles - the ui css removes the background from default
      // even and odd class names included for this demo to allow switching themes
      zebra   : ["ui-widget-content even", "ui-state-default odd"],
    
      // change default uitheme icons - find the full list of icons here: http://jqueryui.com/themeroller/ (hover over them for their name)
      // default icons: ["ui-icon-arrowthick-2-n-s", "ui-icon-arrowthick-1-s", "ui-icon-arrowthick-1-n"]
      // ["up/down arrow (cssHeaders/unsorted)", "down arrow (cssDesc/descending)", "up arrow (cssAsc/ascending)" ]
      uitheme : ["ui-icon-carat-2-n-s", "ui-icon-carat-1-s", "ui-icon-carat-1-n"]
    }
    
  • Filter widget changes:

  • Added a new filter widget specific option widgetOptions.filter_fromStart which makes the filter only work from the first letter.

  • Added a widgetOptions.filter_cssFilter option which now contains the class name added to the filter row and each input within it. Previously the class name used was "filters" for the row and "filter" for the input, now both are "tablesorter-filter". Thanks to cr125rider for sharing a code fix!

  • Added css3 box sizing to allow a better fitting filter box. Thanks to thezoggy for sharing the code!

  • The css changes were also added to the blue, green and UI style sheets.

  • Updated the filter widget demo with the available options described above; this includes the widgetOptions.filter_childRows option which was previously undocumented, recently renamed.

  • Resizable Columns Widget changes:

  • The resized column width is now saved using the $.tablesorter.storage() function (optional)

  • If the storage function doesn't exist, the widget will still function, but just not save the column width.

  • Save Sort Widget changes:

  • Modified to now use the $.tablesorter.storage() function (required)

  • The storage function is required for this widget to work properly.

  • Previous saved data is not compatible with the changes made and will be ignored.

  • Updated all docs demos to use jQuery 1.7+.