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!!
Solved! Go to Solution.
Hi @ttaylor ,
Did you reset the varSelectedOrg's value?
Based on your description, the drop down's default will become "-" only if the varSelectedOrg is blank.
So if you want to reset the drop down to "-", please do not forget to change this variable value.
Try this formula:
Navigate(OrgScreen); ResetForm(form_OrgInfo); Sset(varSelectedOrg,Blank());Reset(OrgDropDown);
Best regards,
Hi @ttaylor ,
Did you reset the varSelectedOrg's value?
Based on your description, the drop down's default will become "-" only if the varSelectedOrg is blank.
So if you want to reset the drop down to "-", please do not forget to change this variable value.
Try this formula:
Navigate(OrgScreen); ResetForm(form_OrgInfo); Sset(varSelectedOrg,Blank());Reset(OrgDropDown);
Best regards,
User | Count |
---|---|
229 | |
100 | |
97 | |
56 | |
33 |
User | Count |
---|---|
280 | |
110 | |
109 | |
64 | |
62 |