OnConfigLoaded Event
Fires when the configuration has been loaded directly after starting SiteKiosk.
Syntax
SiteKiosk.OnConfigLoaded = 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 directly after starting SiteKiosk.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.OnConfigLoaded = OnConfigLoaded;
function OnConfigLoaded()
{
alert("Configuration has been loaded");
}
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top