Wednesday, June 27, 2012

Re: One model, multiple pagination in a single view with conditions?

You can only paginate one way at a time, so presumably you can set the associations dynamically depending on the parameters from jQuery. Though separate models might be cleaner as you can hard-code the associations.

Mark

On Monday, June 25, 2012 11:41:16 PM UTC-4, 42startups wrote:
As the title suggests, is there a simple way to do this?

Or should I create a separate model?

Here's the code:

$this->paginate = array('limit'=>30);
$this->Hashtag->Pin->bindModel(array('hasOne' => array('HashtagsPin')), false);
$this->set('hashtag', $this->paginate('Pin', array('HashtagsPin.hashtag_id' => $id)));
$this->set('thought', $this->paginate('Pin', array('HashtagsPin.hashtag_id' => $id,'Pin.url'=>null)));

So I need to paginate 'hashtag' and 'thought' separately. I'll be attaching infinite scroll jquery to both.

--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
 
 
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

No comments: