LastResetDate Property



 
The LastResetDate property contains the last reset date.


Syntax

    [dt=] SiteKiosk.Plugins("SiteCash").AccumulatedMoneyStorage.
          LastResetDate
    
Possible Values
    Date value that retrieves the reset date.

    The property is read only.
Remarks Examples
    The following example shows the last reset date.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    var AMStorage = SiteKiosk.Plugins("SiteCash").AccumulatedMoneyStorage;
    var myDTF = SiteKiosk.SiteKioskUI.CreateDateTimeFormatter();
    alert(myDTF.FormatDate(AMStorage.LastResetDate));
    </SCRIPT>
    

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

Back to top