Welcome Guest, Not a member yet? Register   Sign In
Pagination only displays the first 10 records
#2

I think the problem is in your base_url from pagination library.
test this.
Code:
 $config = [
       'base_url' => site_url(site_url(uri_string(2)),
        'uri_segment' => 3

I think that you wil have a problem with limit functionality later.
so when you call
Code:
$this->Customer->getCustomers($config['per_page'], $this->uri->segment($config['uri_segment']));
change it for :
Code:
$this->Customer->getCustomers($config['per_page'], $this->uri->segment($config['uri_segment'])*$config['per_page']);
Reply


Messages In This Thread
RE: Pagination only displays the first 10 records - by Edel - 08-17-2017, 08:25 PM



Theme © iAndrew 2016 - Forum software by © MyBB