Moderator
2 years, 4 months ago
#36559
::
Hi Vasileios,
Alex is right, you cannot open a screen of a Simplifier application as a popup, so if you really want to have a separate popup window and not a dialog on the screen, you need to implement a workaround.
In addition to Alex’ suggestion, you can also open your Simplifier application via URL in a popup:
window.open("URL_of_your_application", "_blank", "popup=true")
Using URL query parameters and reading them with auto fields (as demonstrated in this video), you can transfer data from your base application to the popup. However, to transfer data from the popup to the base application, you cannot use global variables because both windows will have separate sessions. So you need to store the data in a common database for example.