How do I make pagination for three sections separately on one page in cakephp?

I have three divs (on the same page) with different IDs that I would like to use pagination for. I'm using CakePHP's built-in pagination method to achieve this. The first page for all sections is displayed correctly. But if I'm on the first page of the second div and click on the next link, I get the following elements of the first div.

And similarly, if there are no elements for the third div for the second page, still I get elements for the first div.

How do I tweak the pagination setting to manage the three lists independently?

+2


source to share


2 answers


This is reported on the Debuggable website .



How to have multiple paginated widgets on the same page with CakePHP

+1


source


If you want to use inline pagination, you won't. Thus, you have to write your own pagination. or just create a new helper on the original



0


source







All Articles