Hi everyone,
I have come across a very weird bug here.
This is the code on one of my screen's OnVisible attribute:
UpdateContext({ ShowSomeDialog:false, SomeText:"Hi!" })
When I navigate to this screen, my pop-up with the Visible attribute set to ShowSomeDialog is visible even though it should be set to false, and my label with the Text attribute set to SomeText is empty.
BUT, if I go to the previous screen and navigate to my problematic screen again, this time the OnVisible event seems to be triggered correctly.
The button that navigates to this problematic screen is a very simple Navigate function with nothing else:
Navigate(MyBuggedScreen, ScreenTransition.Fade)
Another weird thing about this situation is the fact that the application works perfectly when launched in 'Edit' mode, but has this bug when launched via 'Play' mode or via my cell phone.
What I've tried:
- Duplicating the screen and navigating to this new one instead of the original one (same bug);
- Using 'Save As' to create a new copy of my app (same bug);
I have no idea where to look next, any suggestions are welcome!
Thanks!
Hi @JimmyAinsley,
Do you initialize the ShowSomeDialog variable and SomeText variable in other place within your app?
I have made a test on my side, and don't have the issue that you mentioned. The screenshot as below:
The GIF screenshot as below:
Please take a try to re-create your app, and then check if the issue is solved.
If the issue still exists, please take a try with the following workaround:
Set the OnVisible property or OnStart property of the first screen of your app to following formula:
UpdateContext({ ShowSomeDialog:false, SomeText:"" })
Set the OnSelect property of the "Navigate" button to following:
Navigate(MyBuggedScreen, ScreenTransition.Fade)
Set the OnVisible property of the MyBuggedScreen to following:
UpdateContext({ ShowSomeDialog:false, SomeText:"Hi!" })
then check if the issue is solved.
Best regards,
Kris
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
201 | |
70 | |
49 | |
48 | |
20 |
User | Count |
---|---|
250 | |
126 | |
84 | |
75 | |
74 |