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 › »
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 › »
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: "…"