My form has a name input and an alias input. They are in a Primevue Form inside a FormField and both have a resolver that checks for required input.
When a name is entered in the name field the value is being copied by the program to the alias field. In this case the alias resolver isn't being called and the alias field shows an error 'required' message.
When entering a value manually in the input the resolver is being called and the 'required' message appears or disappears depending on alias having a value or not.
Question is when setting values programmatically how can I trigger the validation to be performed that is set on the respective FormFields?