ComplaintsAllowed Property



 
The ComplaintsAllowed property indicates whether a complaint can be sent for this block.


Syntax

    [bool=] BlockInfo.ComplaintsAllowed
    
Possible Values
    Boolean value that retrieves the complaints allowed status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines whether complaints are allowed for the block and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Plugins("SiteCoach").OnBlockURL = OnBlockURL;
    function OnBlockURL(blockedpage)
    {
       alert(blockedpage.ComplaintsAllowed);
    }
    </SCRIPT>
    

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

Back to top