Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TableView.AllowCascadeUpdate Property

Gets or sets whether cascading data updates are allowed. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public bool AllowCascadeUpdate { get; set; }

#Property Value

Type Description
Boolean

true to allow cascading data updates; otherwise, false. The default is false.

#Remarks

The Cascading Data Updates feature is aimed to speed up the GridControl‘s performance while scrolling data rows. Initially, when an end user scrolls grid rows, the grid synchronously loads all rows that should be displayed onscreen. With the enabled cascading data updates, visible rows are asynchronously loaded. To enable this feature, set the TableView.AllowCascadeUpdate property to true.

cascadingdataupdates

Note

When the AllowCascadeUpdate property is set to true, the TableView may incorrectly scroll rows of different heights.

See Also