Hello everyone! Good morning! I’m facing a challenge with a form that contains several tabs, each with the same fields, but filled with different data.
The issue is that, when the user clicks the Submit button, Appian only validates the required fields in the active tab. This impacts our business logic because we need to ensure that all required fields in all tabs are completed before submission.
Goal: Validate all required fields, regardless of which tab is active, when the user clicks Submit.
Question: Has anyone encountered a similar situation or have any suggestions on how we can achieve this?
I’ll attach an image showing part of the form for additional context.Thank you in advance for your help!
Discussion posts and replies are publicly visible
Interface checks only the active tab because hidden tabs aren't loaded, so their validations don't run by default.Create a single validation rule that checks each tab's data separately (local!tab1Data, local!tab2Data), then validate all at once when Submit is clicked.