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

DataGridView.AllowCascadeTreeCreation Property

Gets or sets whether the grid performs deferred data loading on start.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

Declaration

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