Saturday, February 27, 2010

Re: How to set "paginate -> limit" on the fly in my views?

Hello again WebbedIT, :-)

i found something in the book and got some simple paginating links
working in my views.

[code]
<?php
echo $paginator->link('50', array('limit' => 50));
echo $paginator->link('75', array('limit' => 75));
echo $paginator->link('100', array('limit' => 100));
?>
[/code]

Is there also a simple way, to create a text-field?
In this field i'd like to type the limit-number dynamical.
Or it could be also a text field with a "send"-button.

Greetings.

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: