Determining whether SAVE or CANCEL selected

2
Is there any way to check whether SAVE or CANCEL was pressed when you display a form from a microflow or do you need to use custom buttons ? Obviously if CANCEL is pressed, I don't want to do any validation etc.
asked
1 answers
2

Cancel does not trigger any microflows, Save will trigger the before and after commit of the objects being saved. However, i suggest using custom buttons to handle this kind of logic. You can set one of those buttons as the default cancel button (that is, it will be triggered when the user closes the form by any means).

answered