Params passed to the rowEditStart event.

interface GridRowEditStartParams<R> {
    columns: GridColDef[];
    field?: string;
    id: GridRowId;
    key?: string;
    reason?: GridRowEditStartReasons;
    row: R;
}

Type Parameters

Hierarchy (view full)

Properties

columns: GridColDef[]

All grid columns.

field?: string

Which field triggered this event.

The grid row id.

key?: string

If the reason is related to a keyboard event, it contains which key was pressed.

No longer needed.

The reason for this event to be triggered.

row: R

The row model of the row that the current cell belongs to.