form_remote_for in rails - Stack Overflow most recent 30 from stackoverflow.com 2010-03-19T07:43:45Z http://stackoverflow.com/feeds/question/897762 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/897762/form-remote-for-in-rails 0 form_remote_for in rails satyam gautam http://stackoverflow.com/users/0 2009-05-22T13:12:57Z 2009-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#901068 1 Answer by Yi-Ru Lin for form_remote_for in rails Yi-Ru Lin http://stackoverflow.com/users/110349 2009-05-23T07:27:10Z 2009-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>&lt;%- remote_form_for(comment, :url =&gt; topic_post_comments_path(@topic, post), :after =&gt; "submitComment(self);$('input').disable()") do |f| %&gt; &lt;%= f.text_field :body, :size =&gt; 70, :class =&gt; "comment_body" %&gt;&lt;br /&gt; &lt;%= f.submit "Submit", :class =&gt; "comment_submit" %&gt; &lt;%- end -%&gt; </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>