Connected Property
The Connected property indicates whether the terminal is connected to the server.
Syntax
[bool=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
Connected
|
Possible Values
Boolean value that retrieves the connected status.
|
The property is read only.
Remarks
Examples
The following example determines whether the terminal is connected to the Manager and displays it.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
alert(SiteCafe.Connected);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top