@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.
24 lines (23 loc) • 916 B
TypeScript
/**-----------------------------------------------------------------------------------------
* 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";
/**
* Provides arguments for the [`edit`](slug:api_treelist_treelistcomponent#toc-edit) event. Use this interface to access the data item, its state, and the TreeList component instance when editing a row.
*
*/
export interface EditEvent {
/**
* Specifies the data item.
*/
dataItem: any;
/**
* Indicates if the data item is new or existing.
*/
isNew: boolean;
/**
* Provides the `TreeListComponent` instance.
*/
sender: TreeListComponent;
}