Launching the Application in an HTML Frame
To be able to launch the Workspace application, or a custom WCC application, in an HTML frame (for example, an iframe in a portal), you must make some modifications to the launch fragment for the application.
Perform the following procedure prior to launching the application in a frame.
- Open the launch fragment.
- Locate the following: “NOTE: To allow display of this application under frames remove the following style and script elements”.
- Remove (or comment out) the <style> and <script> elements immediately after the note. For example:
<!-- NOTE: To allow display of this application under frames remove the following style and script elements <style type="text/css">html{display:none;}</style> <script language="javascript"> if (self == top) { // Not in frame so show client app document.documentElement.style.display='block'; } else { // In a frame so try to show client app outside of a frame top.location = self.location; } </script> -->
- Locate the following: “NOTE: To allow display of this application under frames remove the next script element”.
- Remove (or comment out) the <script> element immediately after the note. For example:
<!-- NOTE: To allow display of this application under frames remove the next script element <script language="javascript"> if (self !== top) { // Still in a frame so clear body of app and close document.getElementsByTagName("body")[0].innerHTML = 'Not allowed in frames.'; window.open('close.html', '_self'); } </script> -->
- Save and close the launch fragment.
Copyright © Cloud Software Group, Inc. All rights reserved.