@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.
17 lines (16 loc) • 894 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { TreeListComponent } from "../treelist.component";
/**
* Arguments for the [`scrollBottom`](https://www.telerik.com/kendo-angular-ui/components/treelist/api/treelistcomponent#scrollbottom) event. [See example](https://www.telerik.com/kendo-angular-ui/components/grid/scroll-modes#endless-scrolling).
*
* Use this event to get the TreeListComponent instance when the user scrolls to the bottom.
*/
export interface ScrollBottomEvent {
/**
* The instance of the TreeListComponent.
*/
sender: TreeListComponent;
}