TyCam
Questions Asked
2 answers
Limit total number of results in Pagination?
I have a paginated page where I have over 1000 database records. How do I limit the per page...
Answers
There no answers yet.
Comments
- Member since:
- February 3rd, 2010
- Last active:
- 2010-02-03 16:23:28
- Questions asked:
- 1
- Answers:
- 0
- Correct Answers:
- 0
- Comments:
- 1
Limit total number of results in Pagination?
Thanks for the responses, but after way too many hours, I think I've solved it on my own. In the paginate array, I simply added my own made up variable like this: $this-paginate = array( 'limit' = 20, 'totallimit' = 1000 ); And then in the model...