![]() |
Hello,
I have a Product model that I perform a where search and then paginate the results. If I use the countAllResults, I get an incorrect number of records found. Is there a way to count all records returned?
had a quick look through some previous code of mine and found this:
Code: It was when i was playing with a web for my daughter, fashion web. now i coudn't find the code for the method isEmptyMens(); its one of my model->method names and will most certainly contain contain stand model methods for geting data , and in the docs also what I can say is that Code: $handle= new PortfolioModel(); way now to use CodeIgniter Model to get a Count. But i've i have shown using some lateral thinking you can get a count using CodeIgniter Model class and its methods. In later code i just thought horses fore courses and just switched to Query builder to get the job done. (09-23-2022, 02:13 AM)captain-sensible Wrote: had a quick look through some previous code of mine and found this: Thanks for getting back to me. The only way I found is to use two result sets based on same filtered query. $result->like('cat_title', trim($locate) . '%'); $result2->like('cat_title', trim($locate) . '%'); $results2 = $result2->countAllResults(); $results = $result->paginate(5);
I just realized that $this->model->pager->getTotal() returns the correct count.
duh |
Welcome Guest, Not a member yet? Register Sign In |