aspnet-devexpress-dot-web-dot-aspxverticalgrid-cbd042ec.md
Fires after a callback or a postback initiated by the control has been processed on the server.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public event ASPxVerticalGridAfterPerformCallbackEventHandler AfterPerformCallback
Public Event AfterPerformCallback As ASPxVerticalGridAfterPerformCallbackEventHandler
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 ASPxGridAfterPerformCallbackEventArgs. |
| CallbackName | Gets the callback name. Inherited from ASPxGridAfterPerformCallbackEventArgs. |
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