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

DataGridView.AllowCascadeTreeCreation Property

Gets or sets whether the grid performs deferred data loading on start. This is a bindable property.

Namespace: DevExpress.Maui.DataGrid

Assembly: DevExpress.Maui.DataGrid.dll

NuGet Package: DevExpress.Maui.DataGrid

#Declaration

C#
public bool AllowCascadeTreeCreation { get; set; }

#Property Value

Type Description
Boolean

true if data loading is deferred; otherwise, false.

#Remarks

If the AllowCascadeTreeCreation property is set to false, the grid loads rows that should be displayed on start all at once. This may take a lot of time, especially if there are complex templates in data cells. To speed up the grid’s performance on the initial data load, enable the AllowCascadeTreeCreation option. In this instance, rows are displayed one by one with a delay. To provide visual feedback, the grid plays an animation while the data is being retrieved.

See Also