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

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

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
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

Object Type Path to LockDataRefreshOnCustomCallback
ASPxPivotGrid
.OptionsData.LockDataRefreshOnCustomCallback
MVCxPivotGrid
.OptionsData.LockDataRefreshOnCustomCallback
PivotGridSettings
.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