CellEditEvent
Event structure triggered during a cell edit operation in Cell edit mode. This interface provides access to the cell data, field, and row index, and supports cancellation of the cell edit operation.
Props
The following table outlines the props for the CellEditEvent:
| Name | Type | Default | Description |
|---|---|---|---|
| cancel | boolean | false | Flag indicating whether to cancel the cell edit operation. Set to true to prevent the cell from entering edit mode. |
| data | T | - | Data object containing the current values of the row being edited. |
| field | string | - | Field name of the cell being edited. |
| rowIndex | number | - | Index of the row being edited in the grid's data source. |