Skip to main content

GridControl.LoadMore Event

Occurs when an end-user scrolls to the bottom of the grid to load new data items.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

public event EventHandler LoadMore

Event Data

The LoadMore event's data class is EventArgs.

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

The GridControl supports dynamic loading of new data records from the bound data source when an end-user scrolls to the bottom of the grid.

GridControl_LoadMore

To enable this functionality, set the GridControl.IsLoadMoreEnabled property to true. Then, either define a command in a view model and bind it to the grid using the GridControl.LoadMoreCommand property, or handle the LoadMore event.

See Also