Hi,

In my tables i have the relations:

Result               hasMany       Measurement
Measurement    belongsTo     Result
Result               belongsTo     Chip
Chip                  hasMany       Result

I try to paginate using:
$this->paginate = array(
 'contain' => array('Chip')
);

I have put in all models:
var $actsAs = array('Containable');

but no go,

I tried several variations like:
array('Chip'=>array('Measurement'))
array('Chip'=>array('Result'))
array('Chip' => array('Result' => 'Measurement'))
array('Chip'=>array('Measurement','Result') )
array('Chip' => array('Result' => array('Measurement')))

still no go.

any suggestions anyone>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

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

Reply via email to