Object passed as parameter in the row callbacks.

interface GridRowParams<R> {
    columns: GridColDef[];
    id: GridRowId;
    row: R;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

columns: GridColDef[]

All grid columns.

The grid row id.

row: R

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