UNPKG

@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.

32 lines (31 loc) 1.36 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { SortDescriptor, CompositeFilterDescriptor } from '@progress/kendo-data-query'; /** * Provides arguments for the [`pageChange`](https://www.telerik.com/kendo-angular-ui/components/treelist/api/treelistcomponent#pagechange) event. */ export interface PageChangeEvent { /** * Specifies the number of records to skip. */ skip: number; /** * Specifies the number of records to take. */ take: number; } /** * Provides arguments for the [`dataStateChange`](https://www.telerik.com/kendo-angular-ui/components/treelist/api/treelistcomponent#datastatechange) event ([more information and examples](https://www.telerik.com/kendo-angular-ui/components/treelist/data-binding/basics)). */ export interface DataStateChangeEvent { /** * Specifies the sort descriptors by which the data is sorted. */ sort?: Array<SortDescriptor>; /** * Specifies the filter descriptor by which the data is filtered. */ filter?: CompositeFilterDescriptor; }