It\'s a known feature of backbone.js that when you set data that hasn\'t changed it won\'t fire the change event, nor will it go through validations. I however need the change e
this.model.set({fieldErrors: JSONResponse}, {silent:true}); this.model.trigger('change:fieldErrors');
see this conversation:
Can I force an update to a model's attribute to register as a change even if it isn't?