DropPanel.Closed

Syntax

Closed: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The Closed event occurs after closing the component.

Example

To execute the example, place the DropPanel component named DP in HTML page (see Example of Creating the DropPanel Component). Add the Closed event handler:

DP.Closed.add(function (sender, args)

{

    alert("Panel is closed")

})

After closing the panel the following message appears in the screen: Panel is closed.

See also:

DropPanel