When you have a tablesorter table that has .empty() called on it, the
next time you sort the list, those .emptied() elements appear in the
list, along with any new elements you added since.

So, if I have a table with row elements:
[ a b ]

And I empty() it:
[ ]

Then add more elements:
[ b c ]

Then when I sort, I get this:
[ a b c d ] (not necessarily in that order, doesn't matter)

Then when I empty again:
[ ]

And add more elements:
[ e f ]

Then sort, I get this:
[ a b c d e f ]

And so on...

I think tablesorter is working from a cached version of the table that
gets created at the wrong time. I tried debugging it with Firebug, but
didn't have any luck.

Does anyone know where the problem might be?

- Neil

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to jquery-dev@googlegroups.com
To unsubscribe from this group, send email to 
jquery-dev+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to