I have (30) Radio Button controls with the same quantity of related text labels in a form. If a user inadvertently selects a radio button (but does not have text in the related field), I was trying to reset the radio buttons with form submittal. Following is a test I was trying on a single radio button.
@mmbr1606 No resetting the whole form is not wanted. Essentially I'm trying to address errors made by users that accidently select a Radio Button.
An error scenario would include entry of text and the related radio button. Then the user decides to deleted the text but cannot clear the button.
Just a follow up question, resetting the whole Form is not an option right?
Hi @mmbr1606 Thanks for the response. I tried your suggestion and then received...
"The reset function can only be used with a resettable control. Controls within a Form or Gallery control can only be reset from within the same form or gallery template."
hey @RJF61
try this please:
If(
IsBlank(DataCardValue11.Text),
Reset(Radio1_3);
SubmitForm(frmSODataEntry),
SubmitForm(frmSODataEntry)
)
Let me know if my answer helped solving your issue.
If it did please accept as solution and give it a thumbs up so we can help others in the community.
Greetings