Hi there,
I'm trying to build an app where the user has four choices of output from a workflow
I wanted to use radio buttons for this, where the user checks one radio button, and this enables the relevant container to produce the output.
I can only see how radio buttons disable one container at a time - I can't see how to do the reverse, and enable one but disable the others.
Is this possible?
Thanks!
Solved! Go to Solution.
Use "Update with Formula" option in Action Tool and target the "Disabled" part of Container configuration.
You can force it to false with an IF condition.
IF [#1] THEN "False"
ELSE "True" ENDIF
You can extend that to other radio buttons as incoming streams and apply according to the logic you need. It's up to you how you deal with it.
Cheers,
Amazing, this worked perfectly. Thanks so much for the quick response.