ShowModal Method



 
The ShowModal method shows the dialog modal.


Syntax

    SKHtmlDialog.ShowModal()
Return Value
    None.
Remarks
    Modal means that you can not activate the parent window while the dialog is open.
Examples
    The following example creates and shows a modal dialog.

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

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

Back to top