IsAutoNotificationPerDevice Property



 
The IsAutoNotificationPerDevice property indicates whether an automatic notification will be sent when a single device's sales limit is reached.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").RuntimeMenuSettings.
            IsAutoNotificationPerDevice
    
Possible Values
    Boolean value that retrieves the automatic notifications status.

    The property is read only.
Remarks
    The automatic notification will be sent by eMail when a single device's sales reach the configured limit.
Examples
    The following example shows the automatic notifications status in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    var RMSettings = SiteKiosk.Plugins("SiteCash").RuntimeMenuSettings;
    alert(RMSettings.IsAutoNotificationPerDevice);
    </SCRIPT>

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

Back to top