I have a VLayout with multiple DynamicForm instances, all linked to the same ValuesManager (I use this technique to be able to create legends around fields).
When I submit the value manager it's blocked because of a required field (in the data source) that I am not showing in the form (on purpose). Is there a way of skipping unshown fields? If I include the field as hidden in one of the forms and overwrite the "required" property with false, it works, but I would rather not want to do this.
The thing is that I have other forms in my application without a ValuesManager where I don't include required fields and that works.
When I submit the value manager it's blocked because of a required field (in the data source) that I am not showing in the form (on purpose). Is there a way of skipping unshown fields? If I include the field as hidden in one of the forms and overwrite the "required" property with false, it works, but I would rather not want to do this.
The thing is that I have other forms in my application without a ValuesManager where I don't include required fields and that works.
Comment