Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I try to create an Ajax search with CakePHP using the JsHelper. The Ajax request triggers but it never returns values:

Search form (find_entries.ctp):

<?php echo $this->Form->create('Entry');?>
<?php echo $this->Form->input('title', array('div' => false, 'empty', 'label' => false, 'placeholder' => 'Search'));?>

<?php echo $this->Js->submit('Upload', array(
    'before'=>$this->Js->get('#checking')->effect('fadeIn'),
    'success'=>$this->Js->get('#checking')->effect('fadeOut'),
    'update'=>'#choose_options')
    )
;?> 
<?php echo $this->Form->end();?>

Controller:

public function find_entries(){
    if(!empty($this->request->data)){

            $entries = $this->Entry->find('all', array('conditions' => array('Entry.title' => $this->request->data['Entry']['title);    
    $this->set('entries', $entries);
    if($this->RequestHandler->isAjax()){
    $this->render('entries', 'ajax');   
    }
    }

}

Partial to render (entries.ctp)

<div id="entries">

<?php foreach ($entries as $entry) :?>

    <?php echo $entry['Entry']['title']; ?>

<?php endforeach ;?>

What goes wrong here? thanks!

share|improve this question
any error here ? – Moyed Ansari May 9 '12 at 19:37

1 Answer

up vote 0 down vote accepted

have you created any div tag with id choose_options to render the ajax result? If not create a div tag like this in the view file.

<div id="choose_options"></div>
share|improve this answer
Thanks, I am quite an egg. I forgot to remove the 'entries' div from the view file. after that it worked. – ChrisDK May 9 '12 at 22:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.