Try adding the option positionFixed: false, like so:
tablesorterPager({container: $("#pager"),positionFixed: false});
Here are the other defaults:
this.defaults = {
size: 10,
offset: 0,
Building the entire table in the javascript is more annoying, but it
definitely worked. Thanks.
On Apr 5, 11:04 pm, Matt Grimm <[EMAIL PROTECTED]> wrote:
> I also ran across this issue with dynamically loaded tbody content. I
> came to the conclusion, after poring over the tablesorter source cod
I also ran across this issue with dynamically loaded tbody content. I
came to the conclusion, after poring over the tablesorter source code,
that the only solution is to rebuild the entire table with each
dynamic reload. The idea was originally posted here:
http://groups.google.com/group/jquery-e
I recently addressed the same need with the following code:
$(".listtable").tablesorter();
$(".listtable").bind("sortStart",function() {
$("#busybar").fadeIn(400);
}).bind("sortEnd",function() {
$(".listtable tr:odd").removeClass("alterow");
$(".listtable tr:even").addClass("alterow");
Hi Guys,
I will see to it that i incorporate this into the next bug fix version of
tablesorter.
Thanks for spotting it!
/Christian
2008/1/17, Cesar <[EMAIL PROTECTED]>:
>
>
> I encountered this bug the alternate fix, if you want to use version
> 2.0 of the metadata plugin, is to open up tableso
I encountered this bug the alternate fix, if you want to use version
2.0 of the metadata plugin, is to open up tablesorter, and find/
replace $.meta/$.metadata and .data()/.metadata().
For the lazy people out there you can grab my version here: (Use at
your own risk)
http://blog.codafoo.com/javas
got it to work with the version of metadata that comes with the
release from tablesorter.com!
On 1 Jan., 13:45, KnoxBaby <[EMAIL PROTECTED]> wrote:
> Hello,
>
> after a long discussion with karl about cluetip (http://
> groups.google.com/group/jquery-en/browse_thread/thread/
> 26229d51487e3bf9/21
7 matches
Mail list logo