Skip to main content

PivotGridWebOptionsData.LockDataRefreshOnCustomCallback Property

Gets or sets whether refreshing pivot grid data is locked while handling the ASPxPivotGrid.CustomCallback event.

Namespace: DevExpress.Web.ASPxPivotGrid

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

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean LockDataRefreshOnCustomCallback { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

A DefaultBoolean enumeration member that specifies whether to prevent pivot grid data from being refreshed while handling the ASPxPivotGrid.CustomCallback event.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

Property Paths

You can access this nested property as listed below:

Object Type Path to LockDataRefreshOnCustomCallback
ASPxPivotGrid
.OptionsData .LockDataRefreshOnCustomCallback

Remarks

If the LockDataRefreshOnCustomCallback property is set to DefaultBoolean.True, all changes made to pivot grid data in the ASPxPivotGrid.CustomCallback event handlers are applied after the event is raised. If this property is set to DefaultBoolean.False, changes are applied immediately, but the performance may slow, in the case of multiple data updates. If it is set to DefaultBoolean.Default, the static ASPxPivotGrid.LockDataRefreshOnCustomCallback property is in effect.

See Also