form_remote_for in rails - Stack Overflow most recent 30 from stackoverflow.com2010-03-19T07:43:45Zhttp://stackoverflow.com/feeds/question/897762http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/897762/form-remote-for-in-rails0form_remote_for in railssatyam gautamhttp://stackoverflow.com/users/02009-05-22T13:12:57Z2009-05-23T07:27:10Z
<p>HI
I tried using a javascript function call in the submit tag of a form_remote_for but it is not able to find the function im calling.
if i call the same function from form_remote_for then ajax stops working.
can ny one help me how can i call an javascript function when im using form_remote_for NOT FORM_REMOTE_TAG....????</p>
http://stackoverflow.com/questions/897762/form-remote-for-in-rails/901068#9010681Answer by Yi-Ru Lin for form_remote_for in railsYi-Ru Linhttp://stackoverflow.com/users/1103492009-05-23T07:27:10Z2009-05-23T07:27:10Z<p>I think REMOTE_FORM_FOR is what you need.</p>
<p>example:</p>
<p>In your view:</p>
<pre><code><%- remote_form_for(comment, :url => topic_post_comments_path(@topic, post),
:after => "submitComment(self);$('input').disable()") do |f| %>
<%= f.text_field :body, :size => 70, :class => "comment_body" %><br />
<%= f.submit "Submit", :class => "comment_submit" %>
<%- end -%>
</code></pre>
<p>Notice: the javascript function in :after is my custom javascript functions.</p>
<p>And in your controller (it's comments_controller here)</p>
<pre><code>@comment = @post.comments.new params[:comment] # actually, it depends on your model :p
respond_to do |format|
# remember to handle exception here. like if @comment.save or not
format.html
format.js {
render :update do |page|
pagepage.visual_effect :highlight, "comments"
end
}
end
</code></pre>
<p>anyway it's just a easy sample, you have to handle more details after you get some feeling for remote_form_for.</p>
<p>Good luck.</p>