Pregunta

I'm using a table with tablesorter and tablesorter.pager. Both the table and pager are in a div with a background colour.

The issue I'm having is with the pager. It isn't being contained within the div, and instead floats below it. I assume it's an issue with 'display' or 'position' but whatever I do I can't get it to stay within the bounds of the container div.

Help!!

¿Fue útil?

Solución 2

To answer my own question...

In the jquery.tablesorter.pager.js file, in the fixPosition function, it is coded to always set the pager to be position: absolute. I've removed this line which solves my problem, but I would be interested to know why this was done!?

Otros consejos

you don't need to remove the fixPosition, you should just set the positionFixed to false. It's by default true.

$('table').tablesorterPager({positionFixed: false, container: $("#pager")});
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top