I am having a backbone marionette composit view as follow
VideosView = Backbone.Marionette.CompositeView.extend({
template : videosTpl,
id : "video",
itemView : VideoView,
initialize : function() {
//fetching the collection
var myVideos = new VideoCollection();
myVideos.fetch();
this.collection = myVideos;
},
appendHtml : function(collectionView, itemView) {
//appending each videos to the video list
console.log("appendHtml");
collectionView.$("ul").append(itemView.el);
},
onRender: function(){
console.log("onRender");
},
onShow: function(){
console.log("onShow");
}
});
The output in the console is
- onRender
- onShow
- 4 appendHtml
- onRender
The expected code flow according to backbone marionette was
- 4 appendHtml
- onRender
- onShow
any idea how this happen?
Thanks in advance
Renjith