Why event handlers on input fields is not working?

1
Hi All, I have a page with 10 input fields. I have enabled required field option for all the fields. I have an on change event handler for some of the input fields. But the on change event microflow is not calling when I change the value of input field. Instead it is asking to fill remaining required fields. I don't understand the reason behind this behaviour. Please help me how to overcome this. Thanks in advance. Regards, Venkatesh
asked
1 answers
6

The onchange microflow is by default only executed when all validation requirements are met, which is not the case as long as there are empty required fields. You can configure this behavior in the onchange microflow settings. See here. Set ‘Abort on Validation Errors’ ‘Only for this widget’.

answered