<kendo:grid-scrollable>

If set to true the grid will display a scrollbar when the total row height (or width) exceeds the grid height (or width). By default scrolling is enabled.Can be set to a JavaScript object which represents the scrolling configuration.

Example

<kendo:grid>
    <kendo:grid-scrollable></kendo:grid-scrollable>
</kendo:grid>

Configuration Attributes

endless boolean

If set to true the grid will always display a single page of data. Scrolling to the end will load more items untill all items are displayed.

Example

<kendo:grid-scrollable endless="endless">
</kendo:grid-scrollable>

virtual java.lang.Object

Configures the grid virtualization settings. If set to true the grid will enable row virtualization and display a single page of data. Scrolling would just change the data which is currently displayed.Can also be set to the following string values: "rows" - enables virtualization of rows.; "columns" - enables virtualization of columns. or "rows, columns" - enables virtualization of both rows and columns.. Check Virtualization of local data, Virtualization of remote data and Colums Virtualization for live demos.

Example

<kendo:grid-scrollable virtual="virtual">
</kendo:grid-scrollable>
In this article
Not finding the help you need?