Displaying 1 result from an estimated 1 matches for "performance_goals".
Did you mean:
performance_goal
2007 Jul 12
1
remote_form_for behavior on javascript submit();
...in there to send the request
to my RESTful update method. When i change the text area it does in
fact submit the form, but not through AJAX. Instead it sends it as a
normal html form and ignores the onsubmit attribute which reads:
onsubmit="new Ajax.Request(''/accounts/1/users/1/gss/performance_goals/
1'', {asynchronous:true, evalScripts:true,
parameters:Form.serialize(this)}); return false;"
Ive tried using the observe_form helper and it behaves the same way.
The only way i can have it submit through AJAX is by using a submit
button. How can i submit the remote_form_for form via...