I have a lots of users and I am using pagination but my manager wants me to have an option where all the users could be seen on one page. How can I achieve that. I have this in user index action
public function index() {
$this->User->recursive = 0;
$this->set('users', $this->paginate());
}
thanks