I have a select box, and I want to use it to Ajax-update some other content on the page. So I have bound an event handler using the JsHelper (jQuery) like so:

<?php
echo $this->Form->select('car', $cars);
$this->Js->get("#car");
$this->Js->event('change', $this->Js->request(array(
    'controller'  => 'cars',
    'action'      => 'view', 
    ???,
    array('async' => true, 'update' => '#car-view', 'evalScripts'  => true),
    true
));
?>

But how can I get the value of the select box to send as an argument to the cars controller (at "???" in the code above)?

I could do everything in javascript, but is there any way to do this in cake?

link|improve this question
feedback

1 Answer

To be honest, I struggled with this a while back. I couldn't find anything that worked, so I ended up just going the straight javascript route.

link|improve this answer
I've been trying to figure this out for ages too and still haven't come accross anything useful. – Rob Forrest Mar 27 at 8:21
feedback

Your Answer

 
or
required, but never shown

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