Validation and Save Issues

3
On a Form , when validation error thrown on attribute A(which has an on change microflow ) the on change microflow seems not to work anymore and on save the attribute A on object is not saved . Do we know what the issue could be here .
asked
1 answers
5

On change microflows are not executed if the value of the attribute is not valid. Once the value is valid again the on change microflow will be executed.

If you use a custom button to save the object you can save even if you have validations. However, the invalid values are not save. To avoid this you can (since 2.4.4) set the property form validations on the custom button to all.

answered