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've done some jQuery functions in a CakePHP project but finally I decided to try the Ajax Helper . Unfortunately I don't get the idea of how to pass a parameter (form field value) to the AJAX function. I did the following:

$obtainProduct = $ajax->remoteFunction( 
        array( 
        'url' => array( 'controller' => 'products', 'action' => 'obtain', '{$OrderProductId->id}'),
        'update' => 'post' ) 
); 

...

echo $form->input('product_id', array('empty' => true, 'onchange' => "$obtainProduct"));

It calls the function but without retrieving the parameter I need.

I got the idea from the API link docs -api.cakephp.org/class/ajax-helper and I want to get the ID from select box, get it's value and do some lookup in the backend.

So how can I get the ('#OrderProductId option:selected').val or something like this with the helper?

share|improve this question

1 Answer

in cake php you have to use observe field i am assuming you are trying to populate a select box results

create( 'Product' ); ?>
input( 'product_id', array( 'empty' => true,'options'=>$defaultoptions) ) ?> end('submit');?>

observeField( 'ProductProductid', array( 'url' => array( 'controller'=>'products','action' => 'obtain' ), 'update' => 'PostProductid', ) ); ?>

Thats the php code i assume you know how to write the method and view to get the select box result. if having problem let me know.

share|improve this answer

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.