Validate Hidden Elements

Hello guys,

does anybody know how to validate all form fields? Form validation is not validating hiddenFields?

Make sure that your hidden fields are effectively submitted.

In the $_POST, there is no difference between hidden and visible fields, son validation works the same for both.

To make the errors visible, you’ll have to render these visibly somehow.

I have found a way to create them as normal elements and to hide them with <fieldset style="display:none"> then the form validates those fields.