Show all results on one page (gem kaminari)

I have data and it will be cut on some pages (10 results per page).

code in the controller:

@messages = Message.order('id DESC').page params[:page] 

How can I show all the results on one page if I want? This is similar to 'see all' on the navigation page.

+6
source share
1 answer

You can set a very high limit in the per_page parameter if you still want the paginate helpers to work in your view.

 @messages = Message.order('id DESC').page params[:page] if params[:all] @messages = @messages.per_page(Message.count) # you can also hardcod' it end 
+9
source

Source: https://habr.com/ru/post/922170/


All Articles