HtmlDialogSnippet Property
The HtmlDialogSnippet property contains a HTML snippet to display in a HTML Dialog.
Syntax
[str=] SiteKiosk.Plugins("SiteCash").Devices2.Item(index).
HtmlDialogSnippet
|
Possible Values
String that retrieves the HTML snippet.
|
The property is read only.
Remarks
Examples
The following example shows the HTML snippet of the first existing device in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins("SiteCash").Devices2.Item(1).HtmlDialogSnippet);
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top