tags:

views:

15

answers:

1

how can i pass and parameter in $ajax->submit using ajax->helper and then use that parameter in cakephp using ajax helper

A: 

echo $ajax->submit('Submit', array('url'=> '/controller/action/param1/param2'), 'update' => 'dom_element_id'));

Amorphous