DropPanel.FrameDown

Syntax

FrameDown: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The FrameDown event occurs on clicking outside the panel.

Comments

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

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 FrameDown event handler:

DP.FrameDown.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