Could someone offer insight into why the background remains shaded and "Confirm" screen remains after users click "Ok"? It does transition to the Success screen, however, it isn't Resetting.
Hi @Shaguar357,
I expect that the pop-up visibility is conditional based on a boolean variable (Variable within the Visible property). Similar to how you are showing the pop-up (after pressing the save icon?), you will have to hide the pop-up after pressing Ok (and Cancel). Depending on which function you used to set the variable to true, either UpdateContext or Set, you will have to set the variable back to false.
//Change the variable name accordingly
//Example global variable
Set(gblName, false);
//Example local variable (preferred for pop-ups)
UpdateContext({locName: false});
As a note: I tend to avoid using the Group control and use container controls instead. This allows you to set the conditional visibility on the container instead of individual control.
If this solves your question, would you be so kind as to accept it as a solution.
Thanks!
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.