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