Commit Graph

506 Commits

Author SHA1 Message Date
Rob Garrison
9bf590edb8 Core: Add sortDisabled language setting; used in aria-labels 2015-11-08 08:36:13 -06:00
Rob Garrison
001bcae652 Core: sortRestart works again with multi-row headers. Fixes #1074 2015-11-06 12:41:00 -06:00
Rob Garrison
0c99d0c6e3 version bump 2015-11-04 20:15:37 -06:00
Rob Garrison
f80d3d4c2c Core: fix sortRestart preventing sort. Fixes #1072 2015-11-04 19:31:02 -06:00
Rob Garrison
d8d5908d41 Core: jQuery filter element parameter not defined in v1.2.6 2015-11-04 12:35:57 -06:00
Rob Garrison
73153f2bdf version bump 2015-11-02 12:36:00 -06:00
Rob Garrison
9bfde43c8f version bump 2015-11-02 10:50:31 -06:00
Rob Garrison
dbcd306ff2 Core: cache shortDate parser & time parser extracts time 2015-11-01 23:29:18 -06:00
Rob Garrison
1d813bd766 version bump 2015-10-31 11:06:09 -05:00
Rob Garrison
b8880d65f9 Core: Add widget from class before adding options 2015-10-29 23:56:02 -05:00
Rob Garrison
63374355ca Core: Fix parser detect of columns that don't exist due to colspan
And prevent error if config.sortVars is undefined

See #746 & #1047
2015-10-27 20:45:27 -05:00
Rob Garrison
7cdd524d83 Core: maintaining support for IE7-8, until 1/12/16
See https://support.microsoft.com/en-us/gp/microsoft-internet-explorer
2015-10-26 18:43:19 -05:00
Rob Garrison
5d4529c37d Global: call internal functions directly; stop using trigger 2015-10-22 16:41:34 -05:00
Rob Garrison
035a394459 Core: Add "tablesorter-ready" event 2015-10-22 15:10:05 -05:00
Rob Garrison
2409e830b6 Core & headerTitles: internalize sort counter & fix spanned sorts 2015-10-21 11:03:14 -05:00
Rob Garrison
b8e2b65493 Core: sortAppend now accepts an object of column references
See http://stackoverflow.com/q/33177910/145346
2015-10-20 12:47:05 -05:00
Rob Garrison
d1d7da2ac2 Core: fix multisort indicators. Fixes #1005, again
There is now a check to verify that the targeted column is in the sortList, this includes a cell with a colspan that may be outside of the included sort
2015-10-20 06:25:34 -05:00
Rob Garrison
d5a9fb6f81 Core: add rowFilter parameter to getColumnText 2015-10-19 20:54:56 -05:00
Rob Garrison
921631397c Grunt: update build files 2015-10-18 13:24:13 -05:00
Rob Garrison
2b55fca6dd Core: reformat structure & expand variable names
All functions are now public, but some remain undocumented
2015-10-18 13:21:46 -05:00
Rob Garrison
55d19b3a95 Core & Filter: Add "entire column colspan" support. See #746 & #1047 2015-10-17 15:15:36 -05:00
Rob Garrison
c317ded727 Core: use plain js to set index attr & remove unused variable. See #1048 2015-10-14 20:45:46 -05:00
Rob Garrison
40dcaace25 version bump 2015-10-04 09:26:07 -05:00
Rob Garrison
abb5646eb1 Core: Remove tabindex when sort is disabled
See http://stackoverflow.com/a/16827628/145346
2015-10-03 22:11:02 -05:00
Mottie
fa4f916633 version bump 2015-09-23 10:21:44 -05:00
Mottie
8b3fbbbec5 Core: use window.console check to prevent IE9 error. Fixes #1019 2015-09-22 00:17:35 -05:00
Mottie
fca2c9d27e Core: update natural sort regular expression 2015-09-06 20:50:01 -05:00
Mottie
60666279e2 Core: ensure widgets don't get cache options. Fixes #946 2015-09-05 09:28:02 -05:00
Mottie
829d3792fa version bump 2015-09-01 10:45:24 -05:00
Mottie
faaafe60a9 Core: correct header sort indicators in row/colspans. Fixes #1005 2015-09-01 10:35:55 -05:00
Mottie
91a76eae45 Core: corrected sorting of col/rowspan in thead. Fixes #1005 2015-08-31 22:54:21 -05:00
Mottie
7756fdf9a2 Filter: restore triggered change namespace & prevent search before init. Fixes #1002 2015-08-27 07:14:22 -05:00
Mottie
68ae07cb79 version bump 2015-08-23 13:22:56 -05:00
Mottie
8b73160c67 Core & Filter: cache regex 2015-08-23 07:00:34 -05:00
Mottie
2281b8f2fb version bump 2015-08-19 18:20:27 -05:00
Mottie
805be29302 version bump 2015-08-17 21:08:41 -05:00
Mottie
2b8a104e1e Core: Add updateHeaders method. See #989 2015-08-17 20:07:58 -05:00
Mottie
e78c6539eb Core: correct code error causing jQuery v1.2.6 to not work. Fixes #995 2015-08-16 08:52:11 -05:00
Mottie
a383ce2aaa Core: use cells instead of references to prevent IE8 error. Fixes #987 2015-08-11 00:31:39 -05:00
Mottie
b697d08752 Core: update addRows debug message 2015-07-29 20:57:08 -05:00
Mottie
e87f7ae523 Core: addRows accepts a row string if only one tbody exists 2015-07-29 20:48:12 -05:00
Mottie
ce82258edc Core: make updating methods public
* `$.tablesorter.addRows` - called by `addRows` method.
  * `$.tablesorter.appendCache` - renamed from `appendToTable`; appends cache
    to DOM, called by `appendCache` method.
  * `$.tablesorter.isEmptyObject` - clone of `$.isEmptyObject` (jQuery v1.4).
  * `$.tablesorter.sortOn` - called by `sortOn` method.
  * `$.tablesorter.sortReset` - called by `sortReset` method.
  * `$.tablesorter.updateAll` - called by `updateAll` method.
  * `$.tablesorter.updateCache` - called by `updateCache` method.
  * `$.tablesorter.updateCell` - called by `updateCell` method.
  * `$.tablesorter.update` - called by `update` and `updateRows` method.
2015-07-29 19:50:50 -05:00
Mottie
439034aa5e Core: prevent addRows error. See #979 2015-07-29 18:09:35 -05:00
Mottie
3cd026ee05 version bump 2015-07-28 16:02:33 -05:00
Mottie
10bc23fa24 Overall: set jsHint "undef" & "unused" options. Fixed issues
The math widget had a javascript error which jsHint was not catching
2015-07-28 15:57:01 -05:00
Mottie
b3dd4b7c75 version bump 2015-07-28 15:01:32 -05:00
Mottie
6efe0fd9f5 Build: update files 2015-07-26 12:17:22 -05:00
Mottie
8e81d53db3 Core/Test: add isValueInArray array testing 2015-07-26 09:15:35 -05:00
Mottie
7aa3fb11cf Core: fix js error in isProcessing function 2015-07-26 09:09:21 -05:00
Mottie
b5485f4992 Overall: update debug logging to use console 2015-07-24 18:23:00 -05:00