Object passed as parameter in the row callbacks.

interface GridRowEditStopParams<R> {
    columns: GridColDef[];
    field?: string;
    id: GridRowId;
    reason?: GridRowEditStopReasons;
    row: R;
}

Type Parameters

Hierarchy (view full)

Properties

columns: GridColDef[]

All grid columns.

field?: string

Which field triggered this event.

The grid row id.

The reason for this event to be triggered.

row: R

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