UNPKG

@progress/kendo-angular-listview

Version:

Kendo UI Angular listview component

28 lines (27 loc) 854 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ListViewComponent } from "../../listview.component"; /** * Defines the arguments for the `edit` event. * */ export interface EditEvent { /** * Specifies the data item. */ dataItem: any; /** * Indicates whether the data item is new or existing. */ isNew: boolean; /** * Specifies the item index for the operation. */ itemIndex: number; /** * Specifies the `ListViewComponent` instance. */ sender: ListViewComponent; }