So how do you CLEAR a relationship field that has a value in it? I tried
this.model.set('whatevercontracts_accountsaccounts_ida', '')
this.model.set('whatevercontracts_accounts_name', '');
but that doesn't really work, it seems to leave the name in place. If I d
this.model.set('whatevercontracts_accountsaccounts_ida', '')
this.model.set('whatevercontracts_accounts_name', ' ');
(see space in the name), that clears the name but doesn't really reset the field.
In which case this should work:
You need to unset both the name and the id, though I would think that, logically, clearing the field in the create view should do that for you...
FrancescaS