/**----------------------------------------------------------------------------------------- * 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"; /** * Provides the arguments for the [`edit`](slug:api_grid_gridcomponent#toc-edit) event. */ export interface EditEvent { /** * The data item for the row. */ 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 that triggered the event. */ sender: GridComponent; }