mirror of
https://github.com/Mottie/tablesorter.git
synced 2025-01-12 15:24:21 +00:00
Grouping widget demo now works properly. Fixes #267
This commit is contained in:
parent
73d43713c2
commit
6de2cc930c
12
README.md
12
README.md
@ -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:
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"version": "2.8.1",
|
||||
"version": "2.8.2",
|
||||
"dependencies": {
|
||||
"jquery": ">=1.2.6"
|
||||
}
|
||||
|
@ -62,7 +62,7 @@
|
||||
theme : 'blue',
|
||||
headers: {
|
||||
0: { sorter: 'checkbox' },
|
||||
2: { sorter: 'select' },
|
||||
3: { sorter: 'select' },
|
||||
6: { sorter: 'inputs' }
|
||||
},
|
||||
widgets: ['group'],
|
||||
|
@ -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
|
||||
@ -24,7 +24,7 @@
|
||||
|
||||
var ts = this;
|
||||
|
||||
ts.version = "2.8.1";
|
||||
ts.version = "2.8.2";
|
||||
|
||||
ts.parsers = [];
|
||||
ts.widgets = [];
|
||||
|
4
js/jquery.tablesorter.min.js
vendored
4
js/jquery.tablesorter.min.js
vendored
File diff suppressed because one or more lines are too long
@ -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",
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user