DialogID Property
The DialogID property contains the ID of the dialog.
Syntax
[long=] SKHtmlDialog.DialogID
|
Possible Values
Long value that retrieves the ID.
|
The property is read only.
Remarks
Examples
The following example creates a dialog and shows its ID in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
alert(mydialog.DialogID);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top