Skip to main content

PivotGridSettings.BeginRefresh Property

Occurs before the PivotGrid starts recalculating its data.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public EventHandler BeginRefresh { get; set; }

Property Value

Type Description
EventHandler

An EventHandler delegate method allowing you to implement custom processing.

Remarks

The BeginRefresh and PivotGridSettings.EndRefresh events serve as notifications for operations on data (for instance, sorting and grouping data). The BeginRefresh event fires before an operation starts, and the PivotGridSettings.EndRefresh fires after the operation has been completed.

See Also