As mentioned in @BigToach, I added this to a method in my controller
$this->paginate = array( 'paramType' => 'querystring', 'limit' => 30, 'maxLimit' => 100 );
and add the following code to my view
$limit = $this->params->query['limit']; $options = array( 5 => '5', 10 => '10', 20 => '20' ); echo $this->Form->create(array('type'=>'get')); echo $this->Form->select('limit', $options, array( 'value'=>$limit, 'default'=>20, 'empty' => FALSE, 'onChange'=>'this.form.submit();', 'name'=>'limit' ) ); echo $this->Form->end();
source share