[jQuery] Re: Tablesorter + pager question/bug?

2007-11-18 Thread Preston Hunt
Yep, adding positionFixed: false took care of the problem! Thanks for the tip. Best regards, Preston On Nov 16, 1:25 pm, cjiang [EMAIL PROTECTED] wrote: Hi, I think you can solve the problem by doing the following: $('table').tablesorter({widthFixed: true})

[jQuery] Re: Tablesorter + pager question/bug?

2007-11-17 Thread cjiang
Hi, I think you can solve the problem by doing the following: $('table').tablesorter({widthFixed: true}) .tablesorterPager({container: $(#pager), positionFixed: false}); by passing the positionFixed default setting to false, the fixPosition method will be got called whenver you change the

[jQuery] Re: Tablesorter + pager question/bug?

2007-11-11 Thread Guy Fraser
Preston Hunt wrote: And change the number of display entries from 10 to 20 (or any other value), the pager div does not get moved to below the table. It instead ends up on top of the middle of the table. Happens in Firefox 2 and IE7. The #pager div is absolutely positioned using CSS.