I have some strange behavior with ignition version from 8.1.23 and later that the bound "onClick action" stops working. With 8.1.22 it's working just fine. So I've bound a script to the onClick action at the root container of a defined View, that is placed as an embedded view inside another view, which toggles a popup, example:
logger = system.util.getLogger("onClickPopup")
logger.info("Triggered")
tagPath = self.view.params.udtBinding.tagPath
system.perspective.togglePopup(
id=tagPath,
view='faceplates/WPos/WPos',
params={'tagPath': tagPath},
title=self.view.params.udtBinding.config.name,
draggable=True,
showCloseIcon=True,
resizable=True,
)
So the problem is that after some time when I click the embedded view the popup is not shown and I cannot see any "Triggered" log message in the gateway log at all. My guess is that it seems like the bound onClick events stops working and that something crashed. I've checked in the web-browser console aswell but no message there at all.
So is there anyone else who is experiencing the same issue?