Welcome Guest, Not a member yet? Register   Sign In
Pagination Problems
#8

(This post was last modified: 10-01-2020, 04:03 PM by Gary.)

(09-30-2020, 06:13 PM)nc03061981 Wrote:
Code:
$data['query'] = $model->myQuery()->paginate(10);

$data['result_process'] = $model->processResult($data['query']);

Write a function processResult in your model

Nope, that doesn't work very well... as noted by InsiteFX, one cannot return the result directly (it breaks the chaining that Pagination relies on to work).

I experimented a bit with the callback functionality... initially with $afterFind, but that also breaks the chaining, so then with $beforeFind... which worked without too much trouble, but relied on tricking the Model's findAll() method to bypass some of its functionality by setting the (undocumented) $eventData['returnData'] = TRUE (which, who knows, may change/be removed from the framework's code at some point, and I didn't feel comfortable relying on)...

I ended up writing my own pagination() and findAll() routines for pagination with array data that I simply invoke as an ArrayPagination model to replace the framework's base Model's default whenever I want to paginate with an array of processed data.

Still, I can't believe I'm the only person who wants to paginate with data from a custom array!?!... so perhaps I've ended up redesigning something that already exists somewhere in the framework that I'm too much of hacky beginner to know about Wink
Reply


Messages In This Thread
Pagination Problems - by Gary - 09-29-2020, 11:36 AM
RE: Pagination Problems - by InsiteFX - 09-29-2020, 03:56 PM
RE: Pagination Problems - by nc03061981 - 09-29-2020, 05:33 PM
RE: Pagination Problems - by InsiteFX - 09-29-2020, 05:36 PM
RE: Pagination Problems - by nc03061981 - 09-29-2020, 05:40 PM
RE: Pagination Problems - by Gary - 09-30-2020, 04:24 AM
RE: Pagination Problems - by nc03061981 - 09-30-2020, 06:13 PM
RE: Pagination Problems - by Gary - 10-01-2020, 04:01 PM
RE: Pagination Problems - by InsiteFX - 10-01-2020, 04:53 PM
RE: Pagination Problems - by nc03061981 - 10-01-2020, 05:40 PM
RE: Pagination Problems - by Gary - 10-02-2020, 02:45 AM
RE: Pagination Problems - by heriniaina - 06-12-2022, 08:44 AM
RE: Pagination Problems - by Gary - 06-23-2022, 09:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB