Hello, Iām new to corteza.
Is it possible to disallow editing of field of already created records in compose? I mean user should be able to set fieldās value when creating a record, but should not be able to change it after.
Setting ādenyā on āupdateā permission of field means that user will not be able to set the field when creating a new record, so this is not suitable.
For now I thinking about making an automation script with trigger before(āupdateā) which will throw an error if field was changed, but maybe exists better solution.
You should be able to disable updating without blocking creating a new record.
Iām using it without any problem.
Can you please explain or show screenshot where to find such option to do that?
In window āSet permissions for field āā¦āā I have only options āRead āā¦ā record fieldsā and āUpdate āā¦ā record fieldsā and latter doesnāt allow to change field when creating a new record.
Also instead of using automation script, I later found that it is possible to do with field validation in fieldās settings by using expression āoldValue != āā && value != oldValueā. But it will be better to not allow change field at all like with denied permissions instead of showing error.