I have a big form on a JSF page using lots of components (PrimeFaces).
They are using different validations (like min size/max size, patterns or even custom), but some of them are marked as required using required="true"
or the requiredValidator
.
I want to add a new commandButton to submit the form and do all the validation except the different require validations so that a missing input is ok but not a wrong format.
As for now, I don't see how this could be handled in JSF and I hope someone could give me a hint or something to find a way to implement this.