TreeListView.AllowCascadeUpdate Property
In This Article
Gets or sets whether or not cascading data updates are allowed. This is a dependency property.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
Boolean | true to allow cascading data updates; otherwise, false. The default is false. |
#Remarks
By default, when a view is vertically scrolled, the grid (or treelist) synchronously loads all nodes that should be displayed on screen. To speed up the grid's (or treelist's) performance, enable the AllowCascadeUpdate option. In this instance, visible nodes are asynchronously loaded, one by one, in a background thread. To provide visual feedback, the grid (or treelist) plays an animation while the data is being retrieved.
To learn more, see Cascading Data Updates.
#Implements
DevExpress.Xpf.Grid.ITableView.AllowCascadeUpdate
See Also