OnInserted Event
Fires when a new icon has been added.
Syntax
SiteKiosk.WindowList.NotificationArea.OnInserted = handler
|
Parameters
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 a new icon is added to the notification area.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.WindowList.NotificationArea.OnInserted = OnInserted;
function OnInserted(iconinfo)
{
alert("New icon added: " + iconinfo.ID);
}
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top