Hello,
I have a delete confirm popup configured on screen on click of "Delete" button which is "Visible=false" on visible of the screen, however it's still appearing for a second on screen load very first time.After that, it works as expected in the same app session.
Then, if I again refresh the app, and go to the same screen, popup is reappearing again for the first time and then it works as expected.
I have noticed following behaviour:
the screen is scrollable screen which has couple of forms and gallery control on it.
OnVisibleScreen = UpdateContext( { DeleteConfirm: false} )
Visible property of Popup = DeleteConfirm
OnVisible of the screen, it adopts value DeleteConfirm=false
However, Visible property of Popup takes time to adopt it's value, meaning if I set Visible property of Popup = false by default, It doesn't appear on load at all.
How can I get rid of the popup appearing first time on visible of the screen?
Thanks,