OutOfPanelDown: function (sender, args)
sender. Event source.
args. Event information.
The OutOfPanelDown event occurs on click outside the panel area if the panel is displayed without the support.
The event occurs if the notCreateFrame parameter of the DropPanel.show method is set to True.
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: