DropPanel.OutOfPanelDown

Syntax

OutOfPanelDown: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The OutOfPanelDown event occurs on click outside the panel area if the panel is displayed without the support.

Comments

The event occurs if the notCreateFrame parameter of the DropPanel.show method is set to True.

Example

To execute the example, create the DropPanel component and a button clicking which expands the panel (see Example of Creating the DropPanel Component). Add the OutOfPanelDown event handler:

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

{

    alert("Is out");

})

After executing the example on pressing the button the panel is expanded. The Is Out message is displayed on click outside the panel.

See also:

DropPanel