Search code examples
ruby-on-railskaminari

Kaminari ajax pagination only with prev and next button


I want to use Kaminari only with prev and next button.

I'm using the next helper:

<%= link_to_next_page @object, 'Next', :remote=>true %>

but this, show only a link with Next page.

I want to know how can I use the helpers link_to_previous_page and link_to_next_page toguether.


Solution

  • Actually "link_to_next_page" helper only creates a link to the next page as the name of the method says. If you want to use prev and next buttons you should use the "paginate" helper. Ex:

    You should check the Kaminari Github Repository README doc for more examples