DisableDevices Property



 
The DisableDevices property indicates whether devices are disabled.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
            DisableDevices
    
Possible Values
    Boolean value that retrieves the disabled status.

    The property is read only.
Remarks
    If this property is true, other payment devices are activated as long as there is a connection to the SiteCafe server and a user is logged in.
    If it is false, other payment devices are activated when the connection to the SiteCafe server is established.
Examples
    The following example determines whether devices are disabled and displays it.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
    alert(SiteCafe.DisableDevices);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top