Virtualization
The main job of FlexGrid is to convert JavaScript data objects into DOM elements that user can interact with. In many cases, the data consists of large arrays with many thousands of items. Creating DOM elements for each of these items would make for large and slow pages.
Virtualization is the process of keeping track of visible portions of the data and rendering only those parts. This reduces the number of DOM elements in the document tree and improves performance dramatically.
FlexGrid exposes visible part of the data through the viewRange property. Whenever user resizes the screen or scrolls the grid, viewRange is updated which updates the child DOM elements of the grid.
The sample below uses the viewRange property to implement a simple type of 'infinite scrolling'. When the user scrolls to the bottom of the grid, the code adds items to the grid's itemsSource.
If you inspect the DOM, you will notice that no matter how large the itemsSource gets, the number of DOM elements remains constant. The data is 'virtualized'.
The grid now has 100 rows and 90 cell elements.