# CellCancelDetail

> _Since v1.23.2_

Event detail for cell-level cancel in `mode: 'grid'`.

Fired when the user presses Escape to transition from edit mode to
navigation mode. The grid reverts the focused cell's row data to the
value it had when the editor first received focus and emits this event
so framework adapters (e.g., GridFormArray) can revert FormControls.

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `rowIndex` | <code>number</code> | Index of the row whose cell was reverted. |
| `colIndex` | <code>number</code> | Column index of the reverted cell. |
| `field` | <code>string</code> | Field name of the reverted cell. |
| `previousValue` | <code>unknown</code> | Value restored (the pre-edit snapshot). |
