How to customize pagination in wice_grid gem?

476 Views Asked by At

I have a pagination like:

« First ‹ Prev 1 2 ... 13 14 15 16 17 18 19 20 21 ... 24 25 Next › Last »

This is too long. How can I make this shorter, e.g.:

« ‹ 15 16 17 18 19 › »

1

There are 1 best solutions below

3
On

wice_grid uses Kaminari internally so you should just be able to configure it in an initializer:

Kaminari.configure do |config|
  window               2 # 4 by default
end

and then you would need to override these I18n values in your locale:

en:
  views:
    pagination:
      first: "« First"
      last: "Last »"
      previous: "‹ Prev"
      next: "Next ›"
      truncate: "…"

https://github.com/amatsuda/kaminari