Hi!
I had a behavior set and working to hide certain fields when one option of checkboxes was selected. Now I need these same fields to be hidden when another option of checkboxes is selected.
Adding the second option to the same code didn't work; any way of doing that?
I want "Timed" to trigger the hidden additional field to show, but also if "Timed & Untimed" to trigger this.
if (selectedOption == "Timed") {
selectUNStyle.setHidden(false)
selectUNStyle.setRequired(true)
}
else {
selectUNStyle.setHidden(true)
selectUNStyle.setRequired(false)
}
Thanks!