I have encountered an issue after patch update of Ignition 8.1.26 regarding the modal setting for pop ups. Before the update, the background behind the popup is the only one being darkened and I can still interact with the buttons in the pop up. However, after the update, even the pop ups get darkened and disabled if modal setting is True. Please see image how the issue looks like.
As part of 8.1.26, we corrected Popup behavior when dealing with multiple Popups while at least one is a modal. What you're encountering is most likely a result of those changes.
If you're dealing with multiple Popups, I'd appreciate some more information about the order-of-operations which results in the issue you're seeing.
I attempted to replicate this behavior but was not able to. Reaching out to support would probably be a good idea. This way they can look at your system and maybe get a project export.
Any updates on this? I also encountered this issue when I am opening a popup within a popup where modal properties are both set to True.
my current setup is that popup1 will close when popup2 is called. When I try to close popup2, it will not close but will become a part of the darkened/disabled area. the whole screen will be unusable and will need restart/refresh.
So I noticed this only happens when the initial popup that opens the 2nd popup has a close event aswell. Works fine if it just opens the 2nd popup without closing the initial.
Is there any update on this bug?
This function is exactly what i need for my project.
The behavior you've supplied could absolutely cause issues because there is no guarantee of Action execution order. It is very likely that your "close" Action is occurring before the "open" Action.
In the event you have logic which requires an existing popup to open a second popup before then closing itself (the original popup) it is very highly recommended you use a Script Action to perform the Popup logic as this allows for sequential operations.
When I click the Button in the Main View, a Modal-type Popup is opened (with an ID of "A"). When I click the Button within the Modal-type Popup, a second Modal-type Popup is opened and immediately after that the original Modal-type Popup ("A") is closed. My interaction with the resulting Popup is not hindered by any overlay.
Could you provide some more information regarding the setup or scenario where you're encountering this? Formatted code from any scripts and/or screenshots of Actions would be appreciated.