diff --git a/jquery.tablesorter.js b/jquery.tablesorter.js index c5eabf0..fb59e66 100644 --- a/jquery.tablesorter.js +++ b/jquery.tablesorter.js @@ -733,7 +733,10 @@ this.order = this.count++ % 2; // always sort on the locked order. if(this.lockedOrder) this.order = this.lockedOrder; - + // set every other header back to the default initial sort order + $headers.not($cell).each( function() { + this.count = formatSortingOrder(config.sortInitialOrder); + }); // user only whants to sort on one // column if (!e[config.sortMultiSortKey]) {