isError{Boolean}
If true
the adapter reported that it was unable to save local changes to the backend for any reason other than a server-side validation error.
Example
record.get('isError'); // false record.set('foo', 'valid value'); record.save().then(null, function() { record.get('isError'); // true });
Please login to continue.