How do I trigger the success callback on a model.save()?

The first argument of save is the attributes to save on the model:

this.model.save( {att1 : "value"}, {success :handler1, error: handler2});

Leave a Comment