isSaving{Boolean}
If this property is true
the record is in the saving
state. A record enters the saving state when save
is called, but the adapter has not yet acknowledged that the changes have been persisted to the backend.
Example
var record = store.createRecord('model'); record.get('isSaving'); // false var promise = record.save(); record.get('isSaving'); // true promise.then(function() { record.get('isSaving'); // false });
Please login to continue.