2020-10-19 05:26 AM
Hello,
I made a warning pop up container which "cover" all screen, but buttons under it remains active. Is there any solution for that kind of problem? (I know I can add a dummy button under the container but I think about other, more straight options).
Regards.
2020-10-23 01:25 AM
Hi,
Within your code you could make sure that buttons are set as non visible when you have the warning pop up.
NameOfButton.setVisible(false); //or true when done
When non visible, buttons cannot be interacted with.
/Romain
2020-10-23 02:28 AM
Another way is to make your popup toucheable. If it's on top, then it will "absorb" all the clickEvents and anything below it cannot be touched.
/Martin
2020-10-23 04:35 AM
Thanks for fast responses.
Regards.
2020-10-23 04:49 AM
No sweat. Report back with your progress :)
/Martin