I want to use a Radio control to update the status of the content of the 'ComplianceStatus' column on a 'List'.
When I change the Radio control manually the Patch works fine.
However, when I use the below to try to automatically manipulate the postion of the Radio control the control does indeed change to all three positions (as dictated by the toggles - see below), but the Patch does not fire.
What am I missing?
Controls:
Radio1 - (Items: "NA","Compliant","Noncompliant")
(Default: Switch(Toggle1.Value,false,"NA",
Toggle2.Value=true,"Compliant","Noncompliant")
(OnChange: UpdateIf('Member List', ID=ThisItem.ID, {ComplianceStatus:
If(Self.SelectedText.Value="NA","Compliant","Noncompliant")})
Toggle1 – true/false
Toggle2 – true/false
Galleries:
Gallery1 (Contents: Radio1, Toggle1, Toggle2)