[jQuery] Re: Tablesorter 2.0 : Problem with Sort Direction

2008-04-04 Thread Jonny Polite
Pretty sure that's just how it works. Clicking on a column always makes it run the opposite of the last sort that was used. On Apr 2, 9:30 am, cl4ncy [EMAIL PROTECTED] wrote: Hi, I'm finding this plugin very useful, however i have one major problem with it (i dont know if its just me).

[jQuery] Re: Tablesorter 2.0

2007-09-17 Thread Christian Bach
Hi Guys, I have been stuck on a small island in Greece the last two weeks working on project called vacation. I will be releasing a 2.0.1 version of tablesorter (tonight or tomorrow) that takes care of these issues. /christian 2007/9/16, Rodrigo Moraes [EMAIL PROTECTED]: On 9/14/07, James

[jQuery] Re: Tablesorter 2.0

2007-09-16 Thread Rodrigo Moraes
On 9/14/07, James Dempster wrote: The problem with Zebra Striping widget in tablesorter is because it uses a little bit of xpath, which has been taken out of jQuery 1.2, to fix this replace the format function on line 819 or around there with $( tbody:first tr:visible,table)

[jQuery] Re: Tablesorter 2.0

2007-09-14 Thread pixelwizzard
Hi all I just ran into a problem with Tablesorter and JQuery 1.2 now working with the zebra. had to go back to JQuery 1.1.3. Anyone know what happened? On Sep 11, 9:09 am, rortelli [EMAIL PROTECTED] wrote: Hi all,tablesorter2.0 has some strange behaviours with jQuery 1.2, thezebra stripes

[jQuery] Re: Tablesorter 2.0

2007-09-14 Thread James Dempster
The problem with Zebra Striping widget in tablesorter is because it uses a little bit of xpath, which has been taken out of jQuery 1.2, to fix this replace the format function on line 819 or around there with $( tbody:first tr:visible,table) .filter(':even')

[jQuery] Re: Tablesorter 2.0

2007-09-11 Thread rortelli
Hi all, tablesorter 2.0 has some strange behaviours with jQuery 1.2, the zebra stripes seems not to work correctly... ;) On Sep 10, 11:55 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, On 20 aug, 11:33, lukek [EMAIL PROTECTED] wrote: By the way I had another question. -- In the

[jQuery] Re: Tablesorter 2.0

2007-09-10 Thread [EMAIL PROTECTED]
Hello, On 20 aug, 11:33, lukek [EMAIL PROTECTED] wrote: By the way I had another question. -- In the unpacked version of the latest script your comment on line 555 says apply easy methods that trigger binded events. Does this mean I can insert function calls in here - ie around line 560?

[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
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: problems with multiple rows in thead

2007-08-29 Thread tlphipps
E-mail has been sent. For others who may be interested, the test page is at: http://www.garethphipps.com/tablesorttest/index.html Thanks for looking into this! On Aug 28, 3:36 pm, Christian Bach [EMAIL PROTECTED] wrote: Hi Travis, Would it be possible to send me a test-case of your table,

[jQuery] Re: tablesorter 2.0: problems with multiple rows in thead

2007-08-28 Thread Christian Bach
Hi Travis, Would it be possible to send me a test-case of your table, off-list? Makes spotting the bug easier for me. Regards Christian 2007/8/28, tlphipps [EMAIL PROTECTED]: Tablesorter 2.0 rocks! But I think I've uncovered a bug. I have a table with two rows in the thead section, but

[jQuery] Re: Tablesorter 2.0

2007-08-24 Thread lukek
it appears that the widgets are only called when the tablesorter is initially attached to the table, and then again when the sort is complete. I have found this to be a problem also. Two approaches I have looked at - neither of them satisfying are: 1. insert a call to applyWidget() on line

[jQuery] Re: Tablesorter 2.0

2007-08-22 Thread tlphipps
I have a second feature request as well. Would it be possible to support multiple rows in the thead? I have a table setup with a second row in the thead, but this seems to break the tablesorter when I try to sort anything. I get the following error: o has no properties Line 395: o.count =

[jQuery] Re: Tablesorter 2.0

2007-08-21 Thread lukek
This is interesting. I was thinking along these lines but was interested to know how you - being the designer - would implement it. Thanks for you help. I'll tell you what I am working on at the moment. I'd be interested to know what you thoughts are, if you have any pointers or have thought

[jQuery] Re: Tablesorter 2.0

2007-08-21 Thread tlphipps
I have what I guess would be a feature request for the tablesorter. Some of our larger tables take a few seconds to sort and I would like to be able to display a message for our users to indicate that a sort is in progress. So basically, user clicks on th, message overlays table saying sort in

[jQuery] Re: Tablesorter 2.0

2007-08-20 Thread lukek
Thanks for getting back Christian - only just seen you post. I look forward to the fix. I will tinker with it and see what I come up with until then. By the way I had another question. -- In the unpacked version of the latest script your comment on line 555 says apply easy methods that trigger

[jQuery] Re: Tablesorter 2.0

2007-08-20 Thread lukek
Been having a further poke around. I have done what Christian suggested and merged the widgets and parser arrays of this.config with those in settings. However now I have realised the constructor is being called twice - or the number of levels of inheritance. So many options not sure what to

[jQuery] Re: Tablesorter 2.0

2007-08-20 Thread Christian Bach
Hi Lukek, I took an other approach to this. Check out: http://tablesorter.com/docs/example-extending-defaults.html Regards Christian 2007/8/20, lukek [EMAIL PROTECTED]: Been having a further poke around. I have done what Christian suggested and merged the widgets and parser arrays of

[jQuery] Re: TableSorter 2.0 documentation notes

2007-08-20 Thread Christian Bach
Thanks Chris, The docs are know updated. /christian 2007/8/19, Chris [EMAIL PROTECTED]: Two easy to fix errors: The example code in Getting Started uses tableSorter() several times rather than tablesorter(). Threw me off till I compared my code with other examples.

[jQuery] Re: TableSorter 2.0 pager bug

2007-08-19 Thread Chris
Re my second point (two page display containers), perhaps another approach would be to let users specify optional separate top and bottom containers. That could also remove the need for positionFixed, if one assumes a bottom container always needs to be moved. On Aug 19, 4:15 pm, Chris [EMAIL

[jQuery] Re: Tablesorter 2.0

2007-08-17 Thread Christian Bach
Lukek, I will supply a fix for this after the weekend. If you cant wait that long a tip is that if this.config exists that should be extended instead of the defaults. /christian 2007/8/17, lukek [EMAIL PROTECTED]: Hi, I have just been playing with the new Tablesorter 2.0. Thanks Mr Bach!

[jQuery] Re: tablesorter 2.0 released

2007-08-16 Thread Sam Collett
A great plugin that is now even better. You have put a lot of time into this it seems and it has come on a long way since the first table sorter release. You managed to get a good url for it as well.

[jQuery] Re: tablesorter 2.0 - Shiny Brand new documentation!

2007-07-17 Thread Kia Niskavaara
Christian Bach wrote: After many late night i have managed to sort out a documentation/FAQ, for the new 2.0 release. The new tablesorter will be released next week. It's all looking great! Thanks!

[jQuery] Re: tablesorter 2.0 - Shiny Brand new documentation!

2007-07-16 Thread Stephan Beal
On Jul 16, 10:02 pm, Christian Bach [EMAIL PROTECTED] wrote: The new documentation is located here:http://lovepeacenukes.com/tablesorter/2.0/docs/ Slick :). A quick bug report for you: Under: Disabling headers, with inline options Clicking the Major column sorts by a different column