If I sort my table the content of the table is disabled…
I don’t know why. Without the pager it works.
Have somebody the same problem?
$(function() {
$("table")
.tablesorter({widthFixed: false, widgets: ['zebra']})
.tablesorterPager({
container: $("#pager"),
size: 25
});
});
Tablesorter’s pager plugin completely removes all non-visible rows from the table. So if you want to bind to any elements inside of the table, use the
on()ordelegate()function as follows (ref):if that doesn’t solve the issue, then please share a demo or some of the code you are having trouble with so we can better help you.