StartPage Object



 
The StartPage object provides access to the startpage configuration.


Members Table

    The following table lists the members provided by the StartPage object.

    Members
    Objects Description
    TemplateConfig IXMLDOMNode object of the startpage configuration.
    Properties Description
    TemplateEnabled Whether a startpage template is enabled.
    TemplateName Name of the currently selected startpage template.
    Methods Description
    GetStartpage Returns the absolute path of a startpage.

Remarks
    This object is available through the object Config. Use the StartPage object to read the startpage configuration.

    Note that the path of a file using SiteKiosk objects must be allowed in the
    SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
    if it is not a browser skin file.
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