Hey all,

Weird problem. I have a ajax search form and retrieves submissions and
inserts them into a div.

The ajax is working although the controller does not respect the prefix.

<?php
  echo $form->create('Submission');
  echo $form->input('search', array('class' => 'quicksearch'));
  echo $ajax->submit('Submit', array(
    'class' => 'quicksearchsubmit',
    'url'=> '/judge/submissions/search',
    'update' => 'submissions-list'));
  echo $form->end();
?>

When I submit I get the cake error in the div with the full layout saying
that the "search" function is not available in the "submissions" controller.
Nothing about judge_search.

Routes are definitely working as I am logging in and using the routes
properly.

Anyone having this same prob?

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