Re: Paginate Sort on columns from related tables

2014-09-03 Thread John Sposato
Thanks Jose, we will give it a try! On Tuesday, September 2, 2014 10:18:44 AM UTC-4, José Lorenzo wrote: you will need to use something like http://github.com/lorenzo/linkable to make that work You add the behavior to the models: $actsAs = ['Linkable.Linkable']; Then in your Paginator

Re: Paginate Sort on columns from related tables

2014-09-02 Thread John Sposato
Any ideas? On Thursday, August 28, 2014 9:54:01 AM UTC-4, John Sposato wrote: We are having some issues getting this to work, is it possible? For example, We have a Patient model with a HABTM relationship to CareGiver. And a PatientCase model that belongs to Patient with the hasMany to

Re: Paginate Sort on columns from related tables

2014-09-02 Thread José Lorenzo
you will need to use something like http://github.com/lorenzo/linkable to make that work You add the behavior to the models: $actsAs = ['Linkable.Linkable']; Then in your Paginator options you can add: $this-Paginator-settings['link'] = ['Patient' = ['CareGiver']]; This will probably help you

Paginate Sort on columns from related tables

2014-08-28 Thread John Sposato
We are having some issues getting this to work, is it possible? For example, We have a Patient model with a HABTM relationship to CareGiver. And a PatientCase model that belongs to Patient with the hasMany to it from Patient. Both HABTM relationships are setup and are correct. On the