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

DataGridView.AllowCascadeUpdate Property

Gets or sets whether the grid asynchronously loads data rows while vertical scrolling.

Namespace: DevExpress.XamarinForms.DataGrid

Assembly: DevExpress.XamarinForms.Grid.dll

Declaration

public bool AllowCascadeUpdate { get; set; }

Property Value

Type Description
Boolean

true, to load data asynchronously; otherwise, false.

Remarks

If the AllowCascadeUpdate property is set to false, the grid synchronously loads all rows that should be displayed on screen when a user vertically scrolls a view. To speed up the grid’s performance, enable the AllowCascadeUpdate option. In this instance, visible rows are asynchronously loaded, one by one, in a background thread. To provide visual feedback, the grid plays an animation while the data is being retrieved.

See Also