Hi,
At the moment the NEXT button on my screen navigates to a different screen if both radios (questions) are not blank.
However what I'm trying to do is if radio1 and radio2 are not selected then the textinput field that is not visible - doesn't need to be required to navigate to another screen.
I managed to get a field to be visible when selected value from radio if 'other' is selected. This was the code for the visible part on the textinput :
If(Radio2.Selected.Value="Other", true, false)
On displaymode for my button my code is:
If(!IsBlank(Radio1.Selected) && !IsBlank(Radio2.Selected), DisplayMode.Edit, DisplayMode.Disabled)
On selected of my button is:
Navigate(Screen2,ScreenTransition.Fade)
But how can I make the textinput field required only when it is only visible when 'other' is selected on radio2, to navigate to a different screen?