I am using Wrapper around Autoform. i have custom form layout, with custom fields, and those custom fields are mapped to autoforms field.
I have many forms which have nested objects. For example, a project with multiple stories, each story have multiple type of tasks. Need to have validation as well if task is completed, enter a date time when it is completed.
For client-side validation, you can add custom validation logic using the validators property in the fieldOptions, as described here: https://vaadin.com/docs/latest/components/auto-form#validation. In this validation logic, you should be able to access nested objects and fields of your business objects, like project.stories[0].tasks[0].dateOfComplition etc.