Forum

AlexanderKrieger
Participant
    Has successfully completed the online course Intermediate (200)
    Has successfully completed the online course Advanced (300)
    Has successfully completed the online course Basics (100)
    Has successfully completed the online course Advanced (310)
    Has successfully completed the online course Advanced (320)
2 years, 9 months ago #36523
Up
0
Down
::

No, there is no way to invoke a Simplifier Popup ( Seperate Screen ).

If you still manage within the application, you can use Screen-Dialogs, to do the trick.

However if you want to open a serperate Window, you can use custom JavaScript.

Example:

var windowContent = '<!DOCTYPE html>' +
  '<html>' +
  '<head><title>Title</title></head>' +
  '<body style="margin:0; padding:0; height:99.6vh">' +
  'Text' +
  '</body>' +
  '</html>';

var Win = window.open('', '', 'width=1000,height=1020');
Win.document.write(windowContent);
Win.document.close();