I'm trying to render list of records using CompositeView and I'm unable to identify an event which will be fired post rendering of all the child records.
I went through the documentation and found below methods which have not worked yet -
- onRenderCollection - after the collection of models has been rendered
- onRender - after everything has been rendered
- render:collection - tried it just for the heck of it
Below is the current code snippet -
View.childItem = Backbone.Marionette.ItemView.extend({
template: childTpl,
tagName: 'tr'
});
View.parentPane = Backbone.Marionette.CompositeView.extend({
template: parentTpl,
childView: View.childItem,
childViewContainer: "#childList",
events: {
},
onAfterRender: function (ev) {
$('tbody').css('height', '210px')); // trying to control the height dynamically..
},
});
Try
render:collection
/onRenderCollection
. See "render" event in the Marionette documentation.