Karem
Karem

Reputation: 18103

Kohana 3 Pagination, how to set a max page links limit?

Im using the Kohana Pagination module.

My pages numbers, "1,2,3,4,5,6,7,8, etc. " starts to get too many numbers, and fills the page quite alot. (as i get more and more data).

How can i set a max limit, like only showing up to 10 "page links"?

As right now i have page links from 1 to over a thousand, which looks and fills alot.

Upvotes: 0

Views: 516

Answers (1)

Fenec
Fenec

Reputation: 1222

Use 'floating' view instead of basic. You can set 'count_in' property there.

https://github.com/kohana/pagination/blob/3.1/master/views/pagination/floating.php

Upvotes: 2

Related Questions