Customizing Number of Page Links Rendered With will_paginate?

Posted by Moe on Stack Overflow See other posts from Stack Overflow or by Moe
Published on 2010-04-15T01:36:36Z Indexed on 2010/04/15 1:43 UTC
Read the original article Hit count: 549

I'm using the will_paginate gem for my Rails project and it's working beautifully. Unfortunately, on paginated result sets with a larger number of pages, the link section is too wide. Instead of:

« Previous 1 2 … 5 6 7 8 9 10 11 12 13 … 18 19 Next »

I would like to show:

« Previous 1 2 … 5 6 7 8 9 … 18 19 Next »

How can I reduce the number of page links being rendered? I looked at the will_paginate docs on github but couldn't find a solution.

Thanks! Moe

© Stack Overflow or respective owner

Related posts about ruby-on-rails

Related posts about will-paginate