My code
$this->paginate=array( 'conditions' =>array('OrderDetail.order_id'=>$id), 'maxLimit' => 500));
$this->paginate=array( 'conditions' =>array('OrderDetail.order_id'=>$id), 'limit' => 500));
Both results give me a maximum of 100 records, I set the limit as 500, as if I set 500, I need 500 records.! can any body help me with this?
source share