ASPxVerticalGrid.AfterPerformCallback Event
In This Article
Fires after a callback or a postback initiated by the control has been processed on the server.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public event ASPxVerticalGridAfterPerformCallbackEventHandler AfterPerformCallback
#Event Data
The AfterPerformCallback event's data class is ASPxVerticalGridAfterPerformCallbackEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Args |
Gets specific information (if any) passed from the client side.
Inherited from ASPx |
Callback |
Gets the callback name.
Inherited from ASPx |
#Remarks
Handle the AfterPerformCallback event to perform actions after a callback or a postback initiated by the control has been processed on the server. Use the ASPxGridAfterPerformCallbackEventArgs.CallbackName property to identify the processed callback (e.g., ‘SORT’).
See Also