Skip to content

Commit

Permalink
Grouping widget demo now works properly. Fixes #267
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie committed Mar 28, 2013
1 parent 73d4371 commit 6de2cc9
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 8 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,18 @@ tablesorter can successfully parse and sort many types of data including linked

View the [complete listing here](https://github.com/Mottie/tablesorter/wiki/Change).

#### Version 2.8.2 (3/28/2013)

* Updated the "ignore-leads" parser:
* Renamed the parser to "ignore-articles"
* Added language support and a few languages
* Added a method to add custom articles.
* Please see the [updated demo](http://mottie.github.com/tablesorter/docs/example-parsers-ignore-articles.html) (also renamed)
* Thanks for [thezoggy](https://github.com/thezoggy) for feedback.
* Fixed a bug in the grouping widget demo:
* The "priority (letter)" column was incorrectly parsing the data which, for some reason, worked in some browsers.
* Thanks again to [thezoggy](https://github.com/thezoggy) for reporting [this issue](https://github.com/Mottie/tablesorter/issues/267).

#### Version 2.8.1 (3/27/2013)

* Added `customAjaxUrl` option to the pager:
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tablesorter",
"version": "2.8.1",
"version": "2.8.2",
"dependencies": {
"jquery": ">=1.2.6"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/example-widget-grouping.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
theme : 'blue',
headers: {
0: { sorter: 'checkbox' },
2: { sorter: 'select' },
3: { sorter: 'select' },
6: { sorter: 'inputs' }
},
widgets: ['group'],
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.tablesorter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* TableSorter 2.8.1 - Client-side table sorting with ease!
* TableSorter 2.8.2 - Client-side table sorting with ease!
* @requires jQuery v1.2.6+
*
* Copyright (c) 2007 Christian Bach
Expand All @@ -24,7 +24,7 @@

var ts = this;

ts.version = "2.8.1";
ts.version = "2.8.2";

ts.parsers = [];
ts.widgets = [];
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.tablesorter.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tablesorter",
"title": "tablesorter",
"version": "2.8.1",
"version": "2.8.2",
"description": "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.\n\nThis forked version adds lots of new enhancements including: alphanumeric sorting, pager callback functons, multiple widgets providing column styling, ui theme application, sticky headers, column filters and resizer, as well as extended documentation with a lot more demos.",
"author": {
"name": "Christian Bach",
Expand Down
2 changes: 1 addition & 1 deletion tablesorter.jquery.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tablesorter",
"title": "tablesorter",
"version": "2.8.1",
"version": "2.8.2",
"description": "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.\n\nThis forked version adds lots of new enhancements including: alphanumeric sorting, pager callback functons, multiple widgets providing column styling, ui theme application, sticky headers, column filters and resizer, as well as extended documentation with a lot more demos.",
"author": {
"name": "Christian Bach",
Expand Down

0 comments on commit 6de2cc9

Please sign in to comment.