OnDeleteComputer Event



 
Fires when a computer has been deleted.


Syntax

    SiteCafe.Server.Computers.OnDeleteComputer = handler
    
Parameters
    index Long value that contains the computer index.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example displays the index when a computer has been deleted.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteCafe.Server.Computers.OnDeleteComputer = OnDeleteComputer;
    function OnDeleteComputer(index)
    {
       alert("Computer: " + index);
    }
    </SCRIPT>
    

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

Back to top