Wednesday, December 30, 2009

Re: Cakephp 1.2 Paginator Helper, setting limit from view

> I would like to put in the view a link like the following:
>
> Show 20 50 100 Records
>
> And change the limit parameter if the user clicks on 20 50 100.

Yep, use the paginator helper:

<?php
echo $paginator->link('20', array('limit' => 20));
echo $paginator->link('50', array('limit' => 50));
echo $paginator->link('100', array('limit' => 100));
?>

etc

j

--
jon bennett - www.jben.net - blog.jben.net

Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions.

You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php?hl=en

No comments: