It is easy to bind to the \'error\' event of an existing model, but what is the best way to determine if a new model is valid?
Car = Backbone.Model.extend({ va
i encountered problem like it
my solution
... var handler = function(model, error, context) {} try { cars.add({}, { error: handler }) } catch (e) { } ...