@progress/kendo-angular-treelist
Version:
Kendo UI TreeList for Angular - Display hierarchical data in an Angular tree grid view that supports sorting, filtering, paging, and much more.
19 lines (18 loc) • 818 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* The scroll mode of the TreeList.
*
* The available values are:
* - `none`—Scrollbars are hidden. The TreeList cannot be scrolled.
* - `scrollable`—Displays scrollbars in TreeList.
* - `virtual`—Enables the [virtual scroll mode](slug:virtualscrolling_treelist) of the TreeList.
*
* @example
* ```html
* <kendo-treelist scrollable="scrollable"></kendo-treelist>
* ```
*/
export type ScrollMode = 'none' | 'scrollable' | 'virtual';