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
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php

Reply via email to