In my rails app I have a remote form that looks something like this for example:
<%= form_tag some_path, :method => :get, :id => 'my-form', :remote => true do %>
<%= text_field_tag :search, params[:search], :id => 'search-field' %>
<%= submit_tag 'Go' %>
<% end %>
Now i would like to submit this form via javascript and trigger all rails remote form callbacks. So far i have tried a few things but nothing seems to be working.
Things i have tried:
$('#my-form').trigger('onsubmit')
$.rails.callFormSubmitBindings( $('#search-form') )
but no luck so far. Any ideas?
You can just use .submit();
$("#my-form").submit();
This is simply in Rails way :
$("#myform").trigger('submit.rails');
In Rails 5.1+, which replaces the old jquery-ujs
with a non-jquery rails-ujs
, the above answers no longer work, always submitting the form via an HTML HTTP request. This is how you trigger the new rails submit event handler:
var elem = document.getElementById('myform') // or $('#myform')[0] with jQuery
Rails.fire(elem, 'submit');
(Can't tell you how long it took me to figure that one out...) For some reason, the regular events don't bubble up properly to the delegated event handler attached by rails using rails' new delegate function, when they are triggered by jQuery.
How about using rails_ujs
and simply do the following:
Rails.fire(form, 'submit');
This feels like a proper Rails way to do it.
You can chec out the source here – https://github.com/rails/rails/blob/master/actionview/app/assets/javascripts/rails-ujs/utils/event.coffee#L34
How about passing json from controller and capturing it by your js.
Now, controller's action as
respond_to do |format|
if some condition
format.json { render :json => {:success => true} }
format.html{ redirect_to some_path, :notice => "successfully created" }
else
...
end
end
And capturing the json in js as
$('#my-form').bind 'ajax:success', (event,data) ->
if(data.success == true)
...
Not exactly what you are looking for but hope this turns out to be of any help.
@mltsy answer works perfect for me. However, wanted to reiterate that this requires the use of rails-ujs. If you've upgraded from an older version like me, you might still be using the jquery dependent jquery_ujs. If you're getting ReferenceError: Can't find variable: Rails
in your console, check your application.js and make sure you have rails-ujs or @mltsy's great answer won't work. I wanted to leave a comment instead of an answer, but Stack won't let me.