LoadDefaultSettings Method
The LoadDefaultSettings method loads a dialog specified in a browser skin file.
Syntax
SKHtmlDialog.LoadDefaultSettings(dtype)
|
Parameters
dtype |
String that specifies the type of dialog. |
Return Value
Remarks
Examples
The following example shows a dialog usually displayed by the Content Filter when a page is blocked.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
mydialog.LoadDefaultSettings("coachblocked");
mydialog.ShowDialog();
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top