Event ajax:complete does not get triggered after form-replacement
See original GitHub issueHey.
Today I upgraded from jquery-rails gem 1.0.16 to 1.0.17. I found out that the “ajax:complete” event is not always triggered anymore.
I prepared a simple Rails app to show the problem: https://github.com/easychris/jquery17-rails-ujs-broken
In application.js I want to trigger all ajax:complete events for existing and new forms (hence the .live call):
$(function() {
$('form').live('ajax:complete', function() {
alert('ajax:complete event triggered');
});
});
I prepared two sample data-remote=true forms, one page using jQuery 1.6.4, the other 1.7. The ajax call simply returns javascript code to replace the existing form by another form (in real life the new form would contain error messages etc).
$('#test_form_container').html(' <%= j (render :partial => 'form') %> ');
When using jQuery 1.6.4 the ajax:complete event gets triggered, but unfortunately not using 1.7. I found out that in jquery-ujs the line
element.trigger('ajax:complete', [xhr, status]);
gets called, but it doesn’t trigger any event. I guess because the form to which the ajax event belongs doesn’t exist anymore (as it got replaced by the new form). But it should work, as I use the .live event to bind the event to any form-tag. And it does work in 1.6.4.
Any ideas? I tried a couple of hours to find the error, without success. Maybe someone else already has an idea?
Issue Analytics
- State:
- Created 12 years ago
- Reactions:2
- Comments:36 (13 by maintainers)
@stayhero Why is this issue closed ? I’m on Rails 5.1 and still having this problem:
ajax:success
is never called if the original element is removed by the reponse.js.erb file.I do this in my EJS to solve the problem:
In this way, the html replacement will be delayed to the next time tick that happens after the
ajax:*
events.