I am seeing a weird result.
If i specify my enum field as readOnly in entityDefs, and set the field programatically in a dynamic handler like so:
setTimeout(() => this.model.set('timerTestResult', 'FAIL'), 1);
The field updates in GUI as expected. However, when I save the record it is not set. If I remove the readOnly option from the entityDefs everything works properly when setting the field programatically.
If i specify my enum field as readOnly in entityDefs, and set the field programatically in a dynamic handler like so:
setTimeout(() => this.model.set('timerTestResult', 'FAIL'), 1);
The field updates in GUI as expected. However, when I save the record it is not set. If I remove the readOnly option from the entityDefs everything works properly when setting the field programatically.
Comment