I'm using backbone and marionette and i'd like to render the views based on a variable in the data. this.model.template I was thinking could pull from my data (returning myTemplate and myOtherTemplate) and then I could do some manipulation in the render function but it's not working. Any suggestions?. Can the view be made aware of the model?
var graph = [{
nodeName: "1st level item",
template: "myTemplate",
nodes: [{
nodeName: "2nd level item",
template: "myOtherTemplate"
}]
}];
TreeView = Backbone.Marionette.CompositeView.extend({
tagName: "ul",
initialize: function(){
this.collection = this.model.nodes;
},
appendHtml: function(collectionView, itemView){
collectionView.$("li:first").append(itemView.el);
},
render: function(){
var that = this;
console.log('Loading template name: ' + name + ' template: ' + this.template + ' data: ' + this.model.template);
TemplateManager.get(this.template, function(template){
var html = $(template).tmpl();
that.$el.html(html);
});
return this;
}
});
this.modelto reference a view's model from within it. Beyond that though I don't get what you are asking. – machineghost Sep 17 '12 at 20:07new TreeView({...; inside that elipsis you can define a model, like so:new TreeView{model: new Backbone.Model(graph)– machineghost Sep 17 '12 at 21:57