I\'m using Handlebars template engine. so, I have Model:
Backbone.Model.extend({ urlRoot: Config.urls.getClient, defaults: { con
In the View, You can use following code
modelEvents: { 'change': 'render' }
instead of
initialize: function () { this.model.on('change', this.render, this); }, onRender: function () { console.log(this.model.toJSON()); }