Dave, Keep in mind that Paginate is like doing a $this->Model->find(). The options setup in the $paginate variable in the controller are setting up the arguments to a find-like SQL query on your database. Every time a new page is requested (by the user clicking on the next page link) causes a new query to be run on the database. So any post-processing you did on the results of the query once will need to be done again.
You might try setting up a afterFind() function in your Model but you haven't posted enough actual code here for me to tell if this might work. You might consider storing the percent field in the Model (database). Then Paginate will work. Ken --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
