- table populated from server
- user clicks [add record]
content.pushObject(recordInstance); // isNew
// instance is now in table- user fills out instance data
- user hits save
// in RecordController
record.save();Instance stays in table, and store.filter also adds the instance from the server.
After removing
content.pushObject(recordInstance), the record is still added to the table, but once saved a new one is created as well..Maybe because the first one has no
id?