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.

23 lines (22 loc) 774 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import type { TreeListComponent } from "../treelist.component"; /** * Arguments for the [`edit`](slug:api_treelist_treelistcomponent#toc-edit) event. */ export interface EditEvent { /** * The data item. */ dataItem: any; /** * Indicates if the data item is new or existing. */ isNew: boolean; /** * The `TreeListComponent` instance. */ sender: TreeListComponent; }