Tell us how to build a visual template in the paginator
- Majkl578
- Moderator | 1364
I'd suggest you to use VisualPaginator. It is documented here (only in czech, but code is same). Most recent version is on Github.
Basically, you use the paginator wrapped inside a component, that handles its rendering (file template.phtml). The major benefit is the persistence of current page, provided by the component.
To create this component, add the factory to your presenter:
Then, in an action of the presenter, you set the paginator's parameters:
Lastly, you just render it in your template:
Now your visual paginator is ready and should work as expected.
PS: Depending on Nette you are using, you might need to adjust some
namespaces – Nette\Application\Control
→
Nette\Application\UI\Control
and Nette\Paginator
→
Nette\Utils\Paginator
.
Last edited by Majkl578 (2012-03-09 22:00)