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.23 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 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`](slug:api_treelist_treelistcomponent#toc-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`](slug:api_treelist_treelistcomponent#toc-datastatechange) event ([more information and examples]({% slug databinding_treelist %})). */ 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; }