I've got a fully working version of POST pagination that is crawlable, and fully supports HABTM relationships.
First of all, I use this component for HABTM pagination (only really useful for multiple relationships, otherwise you would just do it directly from the join model) - http://bakery.cakephp.org/articles/view/habtm-searching Then, use this technique for converting POST data to named parameters. http://bakery.cakephp.org/articles/view/form-posting-with-_get-parameters To merge both of them, I had a bit of trouble with the order. You need to explicitly state the order in the $this->paginate property, otherwise things might start going a bit random! Good luck sir. On Mar 5, 3:05 pm, "[email protected]" <[email protected]> wrote: > I have seen from manual that I can pass arguments to paginator > functions with > > $paginator->options(array('url' => .....)); > > Now with this I arguments pass via GET. > How can I do If I would pass arguments via POST. > Many Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
