I’ve been trying to use Loop Pagination with content shown in a HTML loop, but what actually happens is that the HTML table gets duplicated twice by the ajax code. How can we do this correctly?
I have code of the form:
<table>
<!-- table header.. -->
<Loop...>
<tr>
<td>..field..</td>
</tr>
</Loop>
</table>
<PaginateButtons/>
Using the chrome developer tools it looks like pagination adds content to a div at the top of the page content, and not in the Loop contents?