I'm having a problem with my dropdown not refreshing when users navigate to the page. It was working and now it's not. When users make a selection in the drop down and then leave the page, that same information remains if they go back instead of resetting to "-"
I have the following:
MAIN SCREEN
OnSelect = Navigate(OrgScreen); ResetForm(form_OrgInfo); Reset(OrgDropDown);
OrgScreen
Drop Down Properties:
Default = If(!IsBlank(varSelectedOrg), varSelectedOrg.Organization, "-")
Items = Sort(SP1,Organization)
OnSelect = Set(a,OrgDropDown.Selected)
Do you know why my drop down is not resetting?
Thanks so much!!