I want to detect a change in a new record. However, the record is new and dirty from the moment I create it.
var record = transaction.createRecord(App.ContentOfSomeSort, data);
record.get('isNew'); // true
record.get('isDirty'); // true
Is there an event or property that I can observe/listen for that tells me when the record has changed? I would think that isDirty would be good for this, but it's dirty as soon as I create it.