UNPKG

@progress/kendo-angular-grid

Version:

Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.

27 lines (26 loc) 833 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 { GridComponent } from "../grid.component"; /** * Arguments for the [`edit`](slug:api_grid_gridcomponent#toc-edit) event. */ export interface EditEvent { /** * The data item. */ dataItem: any; /** * Indicates if the data item is new or existing. */ isNew: boolean; /** * The data row index for the operation. */ rowIndex: number; /** * The `GridComponent` instance. */ sender: GridComponent; }