Back to Devexpress

DxPivotTable.AllowFieldListDeferredUpdate Property

blazor-devexpress-dot-blazor-dot-pivottable-dot-dxpivottable-fde0c3a4.md

latest2.2 KB
Original Source

DxPivotTable.AllowFieldListDeferredUpdate Property

Specify whether to enable the Defer Layout Update option in the Field List.

Namespace : DevExpress.Blazor.PivotTable

Assembly : DevExpress.Blazor.PivotTable.v25.2.dll

NuGet Package : DevExpress.Blazor.PivotTable

Declaration

csharp
[DefaultValue(false)]
[Parameter]
public bool AllowFieldListDeferredUpdate { get; set; }

Property Value

TypeDefaultDescription
Booleanfalse

true to defer layout update; otherwise, false to update layout immediately.

|

Remarks

The Pivot Table includes a Field List that allows users to manage component layout. Users can drag fields, change field sort order, and apply filters. Refer to the following topic for additional information: Field Customization in the UI.

The Field list also includes the Defer Layout Update checkbox that is unchecked by default. If it is checked, the Pivot Table layout is not updated after each customization. Instead, changes are applied only when the user clicks the Update button.

The following code checks the Defer Layout Update checkbox:

razor
<DxPivotTable Data="SalesData"
              AllowFieldListDeferredUpdate="true">
    <Fields>
        @*...*@
    </Fields>
</DxPivotTable>

Note

When the Defer Layout Update option is enabled, users cannot change field sort order in the Field List. The sort glyph is not displayed.

Run Demo: Pivot Table - Field Customization

Implements

AllowFieldListDeferredUpdate

See Also

DxPivotTable Class

DxPivotTable Members

DevExpress.Blazor.PivotTable Namespace