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

Infinite Scrolling

  • 2 minutes to read

For large recordsets or when the exact record count cannot be determined in advance, you can supply data to the Data Grid in batches, continuously providing more records once an end-user approaches the bottom of the grid. In this case, the Data Grid functions in infinite scrolling mode, in which the scrollbar reflects the currently loaded amount of records. When new records are supplied, the scroll bar re-adjusts its size.

InfiniteScrolling2.gif

To provide data in batches (asynchronously or synchronously) and enable infinite scrolling in the Data Grid, bind the control to a VirtualServerModeSource and handle events the data source provides to supply data and perform requested data operations. The following are two main events you may need to handle:

  • VirtualServerModeSource.ConfigurationChanged -

    Fires on initial data load and reload in the bound grid control, and when the data grid’s sort and filter configuration changes. Allows you to initialize the data source and (optionally) return an initial batch of records.

  • VirtualServerModeSource.MoreRows - Fires when a bound grid control asks the data source for a new batch of rows.

Data editing is disabled by default. To learn how to enable it, see VirtualServerModeSource.AcquireInnerList.

Note

The Data Grid does not support data grouping when being bound to a VirtualServerModeSource.

For more information, see VirtualServerModeSource.

Demo: Infinite Scrolling module in the XtraGrid MainDemo