ShowDialog Method



 
The ShowDialog method shows the dialog.


Syntax

    SKHtmlDialog.ShowDialog()
Return Value
    None.
Remarks
    Properties and methods that affect the GUI of the dialog should be defined or called before the dialog is shown.
Examples
    The following example creates and shows a dialog.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
    mydialog.ShowDialog();
    </SCRIPT>

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top