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
1 2 3 4 5 | record.get( 'isError' ); // false record.set( 'foo' , 'valid value' ); record.save().then( null , function () { record.get( 'isError' ); // true }); |
Please login to continue.