FrameDown: function (sender, args)
sender. Event source.
args. Event information.
The FrameDown event occurs on clicking outside the panel.
The event occurs if the notCreateFrame parameter of the DropPanel.show method is set to False.
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: