I have a pretty large form that I'm using to consolidate information from multiple sources, present it to the user in a readable format, and then allow a limited number of fields to be edited by the user in order to direct later steps in the process.
My form is working well, but I'd like to know if there are options to streamline the field validation that occurs when the user hits submit. There are so many fields that this process is taking nearly a minute (and is likely to get worse in the future, because part of my form includes collections which I expect will grow over time).
90%+ of my fields are hidden fields that are populated by earlier forms and workflows, so I do not need those fields reviewed for validation. Is there an option to have the validation ignore those fields? I'm currently hiding these fields by assigning them a CSS class to hide them.
Alternately, is there an option to disable the validation at submit and instead manually trigger validation at select points in my form (at which point I could just disable the submit button until my desired validations are complete).
As I mentioned, my form is working well as is, it just isn't as fast as I'd like, so I'm just curious about options to streamline the validation process.