how i do action button non editable

0
Hi Team,   i have one button i.e editable but i have requirement now if user clicked on it it should be Non editable.  how can i achieve this. Thank you 
asked
2 answers
0

The most simple solution to do this, is to add a boolean on the entity: _isEditable. If it is non editable you set it to false. If it is editable, you set it to true.

Then on the fields that should only be editable you set the conditional editability to only be able to edit it if _isEditable is true.

 

Please be aware that this is good for UX purposes, but not security.

answered
0

Add Boolean attribute and change it in microflow using change object activity

answered