Reputation: 38888
I have super-View who is in charge of rendering sub-Views. When I re-render the super-View all the events in the sub-Views are lost.
This is an example:
var SubView = Backbone.View.extend({
events: {
"click": "click"
},
click: function(){
console.log( "click!" );
},
render: function(){
this.$el.html( "click me" );
return this;
}
});
var Composer = Backbone.View.extend({
initialize: function(){
this.subView = new SubView();
},
render: function(){
this.$el.html( this.subView.render().el );
}
});
var composer = new Composer({el: $('#composer')});
composer.render();
When I click in the click me div the event is triggered. If I execute composer.render()
again everything looks pretty the same but the click event is not triggered any more.
Check the working jsFiddle.
Upvotes: 37
Views: 12765
Reputation: 2594
When using $(el).empty()
it removes all the child elements in the selected element AND removes ALL the events (and data) that are bound to any (child) elements inside of the selected element (el
).
To keep the events bound to the child elements, but still remove the child elements, use:
$(el).children().detach();
instead of $(.el).empty();
This will allow your view to rerender successfully with the events still bound and working.
Upvotes: 0
Reputation: 434915
When you do this:
this.$el.html( this.subView.render().el );
You're effectively saying this:
this.$el.empty();
this.$el.append( this.subView.render().el );
and empty
kills the events on everything inside this.$el
:
To avoid memory leaks, jQuery removes other constructs such as data and event handlers from the child elements before removing the elements themselves.
So you lose the delegate
call that binds events on this.subView
and the SubView#render
won't rebind them.
You need to slip a this.subView.delegateEvents()
call into this.$el.html()
but you need it to happen after the empty()
. You could do it like this:
render: function(){
console.log( "Composer.render" );
this.$el.empty();
this.subView.delegateEvents();
this.$el.append( this.subView.render().el );
return this;
}
Demo: http://jsfiddle.net/ambiguous/57maA/1/
Or like this:
render: function(){
console.log( "Composer.render" );
this.$el.html( this.subView.render().el );
this.subView.delegateEvents();
return this;
}
Demo: http://jsfiddle.net/ambiguous/4qrRa/
Or you could remove
and re-create the this.subView
when rendering and sidestep the problem that way (but this might cause other problems...).
Upvotes: 65
Reputation: 26837
There's a simpler solution here that doesn't blow away the event registrations in the first place: jQuery.detach()
.
this.subView.render().$el.detach().appendTo( this.$el );
This variation is probably preferable for performance reasons though:
this.subView.$el.detach();
this.subView.render().$el.appendTo( this.$el );
// or
this.$el.append( this.subView.render().el );
Obviously this is a simplification that matches the example, where the sub view is the only content of the parent. If that was really the case, you could just re-render the sub view. If there were other content you could do something like:
var children = array[];
this.$el.children().detach();
children.push( subView.render().el );
// ...
this.$el.append( children );
or
_( this.subViews ).each( function ( subView ) {
subView.$el.detach();
} );
// ...
Also, in your original code, and repeated in @mu's answer, a DOM object is passed to jQuery.html()
, but that method is only documented as accepting strings of HTML:
this.$el.html( this.subView.render().el );
Documented signature for jQuery.html()
:
.html( htmlString )
http://api.jquery.com/html/#html2
Upvotes: 11