Skip to main content
A newer version of this page is available. .

ASPxClientDockManager.PanelPopUp Event

Occurs on the client side when a panel pops up.

Declaration

PanelPopUp: ASPxClientEvent<ASPxClientDockManagerEventHandler<ASPxClientDockManager>>

Event Data

The PanelPopUp event's data class is ASPxClientDockManagerEventArgs. The following properties provide information specific to this event:

Property Description
panel Gets the panel currently being processed.

Remarks

The ASPxDockManager’s client-side functionality provides the capability to respond to end-user manipulation of panels. Each time a panel pops up, the PanelPopUp event fires (in particular, before the animation that occurs when the panel is invoked is complete). This event can be handled to implement custom processing.

The PanelPopUp event provides an argument of the ASPxClientDockManagerEventArgs type. The event argument’s ASPxClientDockManagerEventArgs.panel property allows you to access the panel that pops up.

See Also