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

PivotGridSettings.AfterPerformCallback Property

Fires after a callback initiated by the PivotGrid has been processed on the server side.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v21.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

public EventHandler AfterPerformCallback { get; set; }

Property Value

Type Description
EventHandler

An EventHandler delegate method allowing you to implement custom processing.

Remarks

Each time a callback sent by the PivotGrid (be it a service callback initiated by a UI action, such as invoking a filter popup window, or a callback initiated by the ASPxClientPivotGrid.PerformCallback client method) has been completely processed on the server side, the AfterPerformCallback event occurs. This event allows any desired additional server-side processing to be performed in response to a callback being sent.

See Also