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

TreeListView.AllowCascadeUpdate Property

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

Namespace: DevExpress.Xpf.Grid

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, 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 TreeListView.AllowCascadeUpdate property to true.

dxtreelist-cascadingdataupdates

See Also