Consider this example:
I have a rather big form. The form is split up into several steps. Some of the steps rely on selections made in previous steps to show or hide data.
I show each step as it's own page in the form of a componen , using withFieldGroup for each group.
I want each step to perform validation on that step's fields only. It should not consider previous steps fields, nor the future (which at this point will be undefined anyway).
A succesful validation progresses the user to the next step, while a validation fail keeps them remained on that step until all errors are resolved.
My question relates specifically to ensuring validation on a subset of fields. Is it possible to validate a fieldGroup rather than a form or a field?