Skip to main content

ASPxClientDockManager.PanelCloseUp Event

Occurs on the client side when a panel is closed.

Declaration

PanelCloseUp: ASPxClientEvent<ASPxClientDockManagerEventHandler<ASPxClientDockManager>>

Event Data

The PanelCloseUp 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 is closed, the PanelCloseUp event fires. This event can be handled to implement custom processing.

The PanelCloseUp event provides an argument of the ASPxClientDockManagerEventArgs type. The event argument’s ASPxClientDockManagerEventArgs.panel property allows you to access the panel that is closed.

See Also