OnRemoved Event
Fires when an existing icon has been removed.
Syntax
SiteKiosk.WindowList.NotificationArea.OnRemoved = 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 an icon has been removed.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.WindowList.NotificationArea.OnRemoved = OnRemoved;
function OnRemoved(iconinfo)
{
alert("Icon has been removed: " + iconinfo.ID);
}
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top