Reputation: 492
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
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
Reputation: 15985
There are two popular gems
We used both in different applications.
Upvotes: 0