DataGridView.AllowCascadeUpdate Property
Gets or sets whether the grid performs deferred data loading while vertical scrolling.
Namespace: DevExpress.XamarinForms.DataGrid
Assembly: DevExpress.XamarinForms.Grid.dll
NuGet Package: DevExpress.XamarinForms.Grid
Declaration
[XtraSerializableProperty]
public bool AllowCascadeUpdate { get; set; }
Property Value
Type | Description |
---|---|
Boolean | true, if data loading is deferred; otherwise, false. |
Remarks
The default value of the AllowCascadeUpdate property is true. When being vertically scrolled, the grid loads data rows one by one, and plays an animation while retrieving data to provide visual feedback. This option speeds up the grid’s performance. If it is disabled, the grid loads rows that should be displayed on screen all at once when a user vertically scrolls a view.
See Also