Issue with Required Fields in SteppedContainer Form

In a form within a stepped container, I feel like the required fields are not functioning correctly. Even if a required field is left unfilled, the user is still able to proceed to the next step.

Can you post some screenshots?
Here is what I have done:
You can make the textInput field required (in a form) that's one possibility. Or, you can Disable the next step button if the field is not filled in (I added the || textInput6.value === "" to the condition generated by default.
{{ steppedContainer1.currentViewIndex + 1 === steppedContainer1.viewKeys.length || textInput6.value === ""}}

1 Like