- My goal: I have a form (inside a multi-step) and I want to set some inputs in step 7 to be required (or not) dynamically, based on an answer from step 1.
- Issue: The “Required” validation can’t be set as an expression, so I can’t fill it with something like “{{ step1input.value === true }}“.
- Steps I've taken to troubleshoot: I tried to create a query, triggered in step1Input, which sets step7Input.required = true, but it doesn’t affect step7input at all. It is still not required.
Is there a way to set a field as required dinamically?
