Validation results

I’d like to learn how to get the validation result of multiple inputs and save this value.
Background
I’ve built a multipart form with 3 sections, each section will have all validations in the visible section run on a button dedicated to only that section. This is working as described. If validations in one section are good, then the user will see the next section. At the end of the last section, and after that final section’s validations run, the results of all 3 section validation results will be evaluated to determine if the form data are submitted.
The individual sections will be hidden/shown based on that section’s validation results.

Does anyone know how to examine/save the validation results prior to submitting the form data?
Thank you
P.S.: Yes, I’ve seen the multipart form tutorial and am basing my work on it. It doesn’t address this scenario though.

Hey @Speedy,
I think you could try using data store for this to save validation results or even the cookie manager…

Thanks, the session storage looks interesting to store values within.
Now I need to know exactly how to get the results of a validation attempt. All I can find (for a textinput) is the invalid property. Assuming this is a boolean, it will be true prior to the validation attempt, so I cannot simply look at this alone.
Is there a validation or invalidation event result which I could listen for and then store the result when attempting the validation? Seems like this would be ideal. Or does Wappler even have this capability?

Update: I think I have something which will work: a session state boolean var which will get its value set by summing each of the ‘invalid’ properties on the same button click used to run the validations. Tedious, but seems to be working.