TemplateEnabled Property



 
The TemplateEnabled property indicates whether a startpage template is enabled.


Syntax

    [bool=] SiteKiosk.Config.StartPage.TemplateEnabled
Possible Values
    Boolean value that retrieves the enabled status.

    The property is read only.
Remarks
    A startpage template is a predefined standard startpage which can be choosen in the configuration.
Examples
    The following example determines whether a startpage has been enabled and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Config.StartPage.TemplateEnabled);
    </SCRIPT>
    

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

Back to top