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,
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
274 | |
257 | |
87 | |
39 | |
34 |
User | Count |
---|---|
342 | |
250 | |
131 | |
73 | |
48 |