Wednesday, July 27, 2011

Re: Conditions + Containable

To you query looks wrong. Seems like you do not stick to the syntax of the containable behaviour.
Try this:
$this->paginate = array(
   'contain' => array(
      'City' => array(
         'fields' => array('field1', 'field2', ....),
         'District' => array(
            'fields' => array('field1', 'field2', ....),
            'conditions' => array('District.name LIKE' => '%'.$this->params['form']['search'].'%'),
         )
      )
   )
);

Something like this would do

--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.
 
 
To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

No comments: