Help please!
How can I disable a view or specific buttons when a popup is opened?
Help please!
How can I disable a view or specific buttons when a popup is opened?
Hey @Namya
Multiple options:
draggable = False
, resizable = False
, modal = True
, overlayDismiss = False
Thanks!!!
By using a binding. Don't use a script to do this since you will likely get out of sync and end up with disabled components when they should have been enabled
But, as Transistor said, easiest most foolproof way is to use modal
Making the popup modal will prevent access to the calling view's input components until the popup is closed.