IsAutoNotification Property



 
The IsAutoNotification property indicates whether an automatic notification will be sent when a total sales limit is reached.


Syntax

    [bool=] SiteKiosk.Plugins("SiteCash").RuntimeMenuSettings.
            IsAutoNotification
    
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 the total 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.IsAutoNotification);
    </SCRIPT>

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

Back to top