I have data and they be cut on some pages (10 results per page).
code in controller:
@messages = Message.order('id DESC').page params[:page]
How I can show all results on one page if I want? It similar as 'see all' on page navigate.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can put a very high limit in the per_page option if you still want the paginate helpers to work in your view.