[jQuery] Re: TableSorter 2.0 force update?

2007-09-04 Thread Suni
Actually it maybe should be as below, in case the function for the update-event ever changes :) .bind("reSort",function() { $this.trigger('update'); var sortList = config.sortList; $this.trigger('sorton', [sortList]); })

[jQuery] Re: TableSorter 2.0 force update?

2007-09-04 Thread Suni
I still didn't find a built-in easy way to do this so I added a new method to the tablesorter (around line 576 where all the other bindings are): .bind("reSort",function() { cache = buildCache(this); var sortList = config.sortList; $this.trigger('sorton', [sortList]);

[jQuery] Re: TableSorter 2.0 force update?

2007-09-04 Thread Suni
I've been trying to solve this too. I'm dynamically altering the table contents, and would like to force a refresh / update, but couldn't find a direct way to do that. Got to dig deeper I guess. -- Suni On 19 elo, 23:26, Chris <[EMAIL PROTECTED]> wrote: > I'm playing with adding a filtering widg