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.v18.2.dll

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AfterPerformCallback property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also