My initial screen is a list screen. One of the fields is a drop down list. This drop down list is where the user will select which page to go to. It starts with Select (which takes you nowhere).
When the user picks an option and hits save on that screen, it returns to the initial screen and the drop down list resets to have Select showing. If the user hits cancel on that screen, it does NOT reset the drop down list to Select.
Here is the OnSelect for the Save.
// Shows overlay on save
UpdateContext({OverlayVisible: true});
If(SubmitForm(EditSetupNotesPage),
Refresh(CustomerMaster_v3);
Navigate(CustomerList, ScreenTransition.Fade),
// hides overlay on error
UpdateContext({OverlayVisible: false}))
Here's the OnSelect for the Cancel:
Refresh(CustomerMaster_v3); Back(ScreenTransition.Fade)
What do I need to do to get the dropdown to reset? I am attaching a screenshot that shows you how it returns back when I hit cancel.