class %DeepSee.UI.Dialog.standardDialog
extends %CSP.Portal.standardDialog
Base class for DeepSee dialog pages.
This is a Zen Page class.
parameter APPLYBUTTON = 1;
If true, then this dialog displays an Apply button.
parameter DOMAIN = "%DeepSee";
Localization domain
parameter JSINCLUDES = "zenCSLM.js,zenESVG.js,DeepSee.js";
Comma-separated list of additional JS include files for the page.
parameter RESOURCE = "%DeepSee_Portal,%DeepSee_PortalEdit";
All DeepSee pages require %DeepSee_Portal USE.
method %OnDrawHTMLMeta()
as %Status
This callback is called at the start of the HTML HEAD section of the page (just after the title).
It allows a page to write out meta tags, if desired.
The default implementation writes out an IE-specific meta tag to ensure that IE 9 and 10 don't fall back
into Compatibility Mode when we are returning an HTML5 page (i.e. cssLevel is set to 3).
method getOpener()
[ Language = javascript ]
Helper method to get a reference to the window that launched this window.
The helper is required to handle cases where this window has been opened as a soft modal.
method stripWhitespaces(string As %String)
as %String
[ Language = javascript ]
Strip beginning and ending whitespaces from a given string.