icantbecool
icantbecool

Reputation: 492

What do you use for endless pagination within Rails?

Out of curiosity, what do you use for endless pagination within Rails? I looked at the Rails cast on the topic, but it was using an older version of prototype. If you are using endless pagination, please link your site.

Upvotes: 0

Views: 406

Answers (2)

Aniket Joshi
Aniket Joshi

Reputation: 161

hi cantbecool, endless pagination is used when we want to have a better user experience of fetching data, for eg: rather than clicking on the pagination links and displaying data on a new page, we can fetch sets of data on the same page using will_paginate / kaminari gem and jquery.

there is a good blog on how to implement endless page and hopefully will answer your question.have a look

http://www.idyllic-software.com/blog/endless-page-using-jquery-and-will_paginate/

Upvotes: 3

Amit Patel
Amit Patel

Reputation: 15985

There are two popular gems

  1. will_paginate
  2. kaminari

We used both in different applications.

Upvotes: 0

Related Questions