OverridesAlways Property



 
The OverridesAlways property indicates whether this zone overrides others.


Syntax

    SiteCashZone.OverridesAlways [=bool]
    
Possible Values
    Boolean value that specifies or retrieves the override status.

    The property is read/write.
Remarks
    This property takes effect when a frame navigation occurres and CheckFrames is false for the toplevel zone:
    If OverridesAlways is true for the toplevel zone or the zone of the new URL is the default zone, the toplevel zone is active. If not, the zone of the new URL is active.
Examples
    The following example determines whether the first existing zone overrides others and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").Zones.Item(1).OverridesAlways);
    </SCRIPT>
    

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

Back to top