OnWizardInit Event



 
Fires when the wizard has been started.


Syntax

    SiteKioskConfig.OnWizardInit = handler
    
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows an alert window when the wizard has been started.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKioskConfig.OnWizardInit = OnWizardInit;
    function OnWizardInit()
    {
       alert("Started");
    }
    </SCRIPT>
    

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

Back to top