Skip to main content
All docs
V25.1
  • 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.1.dll

    NuGet Package: DevExpress.Blazor.PivotTable

    Declaration

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

    Property Value

    Type Default Description
    Boolean false

    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 more 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.

    Pivot Table - Field List

    The following code checks the Defer Layout Update checkbox:

    <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

    See Also