Multiple Selection - deselect radio buttons based on value of another field
Hi,
I would like to use the calculated value expression for a multiple selection field to deselect all options based on the value of another field, but I am unaware of the code for this. I'd be very grateful for any help.
e.g.
if ([[Status]] == "None" || [[Status]] == "Opted-out")
{
(deselect all radio buttons);
}
Many thanks
Adam
0
-
Hi Adam Davies
This is the Calculated expression you're looking for:

if ([[Status]] == "None" || [[Status]] == "Opted-out") {
return null;
} else{
return Ardevia.Expressions.Core.FieldValueProvider.GetFormFieldValue("RadioBoxes");
}Works for single select (radio buttons) and multi select (checkboxes)
Thanks to Markiyan Fostyak for helping find this solution
0 -
Perfect. Thank you!
0
Please sign in to leave a comment.
Comments
2 comments