Welcome Guest, Not a member yet? Register   Sign In
Pagination using per_page to increment page numbers fix
#5

[eluser]Frank Wong[/eluser]
Ah, I realized that it was not very clear what the problem is. Thanks for asking, pyro.

Problem:
The create_links method was incrementing the page segment of the URI by the per_page attribute instead of by 1.

Sample code:
Code:
$this->load->library('pagination');
$config['per_page'] = '5';
$config['uri_segment'] = '4';
$config['base_url'] = site_url('seg1/seg2/seg3/');
$config['total_rows'] = 100;
$this->pagination->initialize($config);
$this->pagination->create_links();

Expected results:
Digit links
Code:
<a href="seg1/seg2/seg3/">1</a>
<a href="seg1/seg2/seg3/2">2</a>
<a href="seg1/seg2/seg3/3">3</a>
<a href="seg1/seg2/seg3/4">4</a>
<a href="seg1/seg2/seg3/5">5</a>
etc...

Observed results:
Digit links
Code:
<a href="seg1/seg2/seg3/">1</a>
<a href="seg1/seg2/seg3/5">2</a>
<a href="seg1/seg2/seg3/10">3</a>
<a href="seg1/seg2/seg3/15">4</a>
<a href="seg1/seg2/seg3/20">5</a>
etc...

NOTE: The previous, next, and last links were incorrect also based on the same issue as illustrated above and the posted code change fix that problem also.


Messages In This Thread
Pagination using per_page to increment page numbers fix - by El Forum - 11-10-2007, 11:43 AM
Pagination using per_page to increment page numbers fix - by El Forum - 11-10-2007, 07:40 PM
Pagination using per_page to increment page numbers fix - by El Forum - 11-11-2007, 12:29 AM
Pagination using per_page to increment page numbers fix - by El Forum - 11-11-2007, 05:44 AM
Pagination using per_page to increment page numbers fix - by El Forum - 11-11-2007, 10:12 AM
Pagination using per_page to increment page numbers fix - by El Forum - 11-11-2007, 10:35 AM
Pagination using per_page to increment page numbers fix - by El Forum - 11-11-2007, 11:04 AM
Pagination using per_page to increment page numbers fix - by El Forum - 01-08-2008, 12:11 PM
Pagination using per_page to increment page numbers fix - by El Forum - 05-23-2008, 12:23 PM



Theme © iAndrew 2016 - Forum software by © MyBB