New to Kendo UI for jQuery? Download free 30-day trial

Virtual Scrolling

Virtual scrolling is an alternative to paging.

For runnable examples, refer to:

Table of contents:

Getting Started

When virtual scrolling is enabled, the Grid loads data from its remote data source while the user scrolls vertically.

$("#grid").kendoGrid({
    scrollable: {
        virtual: true
    },
    // Other configuration.
});

In virtual scrolling, the HTML output is different from the standard scrolling functionality—the data table of the Grid is not placed inside a scrollable container. The scrollbar belongs to a separate div.k-scrollbar which affects scenarios when the data rows have to be manually scrolled to a particular position.

<div class="k-widget k-grid">
    <div class="k-grid-header">
        <div class="k-grid-header-wrap">
            <table>...</table>
        </div>
    </div>
    <div class="k-grid-content">
        <div class="k-virtual-scrollable-wrap">
            <table>...</table>
        </div>
        <div class="k-scrollbar k-scrollbar-vertical">
            ...<!-- div elements which generate a scrollbar -->...
        </div>
    </div>
</div>

When the user scrolls a Grid in its virtual-scrolling mode, the Grid renders the table rows for the reached scroll position on the fly. If the Gris uses local data or if its remote data has already been loaded and cached, the rendering rate and performance of the component depend on:

  • The page size.
  • The Grid height.
  • The scrolling speed.
  • The total number of data items.

If the total number of items is large and the scrolling is fast, the table of the Grid can be re-rendered frequently. If, additionally, the page size is huge, the user might observe issues with the smoothness of the scrolling. In such cases, reduce the page size and increase the Grid height to improve the scrolling performance.

Requirements

There are several requirements that are needed for the Virtual Scrolling to function correctly:

  • The Grid must have a defined height.
  • The Grid must be visible when it is initialized.
  • The DataSource must have a defined pageSize.
  • The DataSource must have a defined total when Remote Binding is used.

Additional information about the limitations of virtual scrolling can be found in the Known Limitations section of the article.

Setting the Scrollbar

Virtual scrolling relies on a fake scrollbar. Its size is not determined by the browser but is calculated based on the average row height of the data that is already loaded. As a result, variable row heights may cause unexpected behavior such as an inability to scroll to the last rows on the last page. To ensure that all table rows have the same heights, use either of the following options:

  • Disable text wrapping, or
  • Set an explicit, large-enough row height as demonstrated in the following example.

    .k-virtual-scrollable-wrap tr
    {
        height: 3em;
    }
    
    // Or
    
    .k-virtual-scrollable-wrap td
    {
        white-space: nowrap;
    }
    

Using on Mobile

On mobile devices where a scrollbar that can be grabbed and dragged is not visible, virtual scrolling of a large number of data items (for example thousands) might hinder the easy access to all table rows because the large number of data items will require a great deal of touch scrolling. On the other hand, using virtual scrolling with a very small number of items (for example, less than 200) does not make much sense. Virtual scrolling on touch devices relies on drag-and-drop events, which are slower than native scrolling. This might lead to performance issues.

Known Limitations

When virtual scrolling is not supported or recommended and depending on the number of data items, either revert to standard paging or to non-virtual scrolling without paging.

  • Either enable virtual scrolling or paging. Do not apply both features at the same time.
  • Virtual scrolling is not compatible with hierarchy. Editing is supported as of R3 2017. Group paging is supported as of R2 2020.
  • Virtual scrolling is not compatible with drag selection.
  • Virtual scrolling relies on calculating the average row height based on already loaded data. Having a large variance of row heights or an unknown number of rows that are not bound to data (such as group headers) might cause unexpected behavior.
  • Provide for a page size of the Grid that is large enough, so that the table rows do not fit in the scrollable data area. Otherwise the vertical virtual scrollbar will not be created. The page size of the Grid must be over three times larger than the number of visible table rows in the data area.
  • A scrollable Grid with a set height needs to be visible when initialized. In this way the Grid adjusts the height of its scrollable data area in accordance with the total height of the component. In certain scenarios the Grid might be invisible when initialized - for example, when placed inside an initially inactive TabStrip tab or in another component. In such cases use either of the following options:
    • Initialize the Grid while its element is still visible.
    • Initialize the Grid in a suitable event of the parent component - for example, in the activate event of the TabStrip.
  • Because of height-related browser limitations (which cannot be avoided), virtual scrolling works with up to one or two million records. The exact number of records depends on the browser and the row height. If you use a row count that is larger than the browser can handle, unexpected component behavior or JavaScript errors might occur. In such cases, revert to standard paging.
  • Refreshing or replacing the Grid data in the virtual mode has to be accompanied by resetting the position of the virtual scrollbar to zero—for example, by using $('#GridID .k-scrollbar').scrollTop(0);. In some scenarios, you might also need to call the refresh() method.
  • Programmatic scrolling to a particular Grid row is not supported when virtual scrolling is enabled, because it is not possible to reliably predict the exact scroll offset of the row.
  • When the Grid is navigatable, keyboard navigation supports only the Up Arrow and Down Arrow keys. The Page Up and Page Down key scrolling is not supported.
  • The new persistSelection can work with the single selection functionality by using the following example. The multiple selection functionality is not recommended as the old page is removed from the DOM when scrolling occurs. This can break the selection as the DOM elements do not exist after the scrolling reaches the new page.

KB Articles on Scrolling

See Also

In this article