I would like to access the calculated fields I have implemented in the model (backbone.js) from the template. Do I need always to define a helper to do it?
I think the p
Here is another possibility: (from the model initialize)
initialize: function() { this.on("change", function () { this.set({ calculatedColumn: this.get("otherColumn") }, { silent: true }); }); },
Computed properties in Backbone