I have a form in which if you click on a check box, a field becomes visible. Actually, there are dozens of these check boxes with hidden/visible fields.
Is there a way to make just these fields required only when visible? If the user wants to print or save, they must fill in these visible fields while the form ignores the hidden fields. Thanks all!
You can, however, do validation. You may require the user to use button fields YOU inserted into the form, which would provide the Save or Print functionality.
Saving may be a bit tricky, but the workaround would be to consolidate all calculations into one single hidden field. The Calculate script of that field then evaluates the required fields and shows the Print and Save buttons only when everything is OK. Having consolidated the calculations into one single script will also put the least overhead load on the form, meaning that it will act fastest (compared to a form with many individual field's calculations).
Hope this can help.
Max Wyss.