Params passed to apiRef.current.setEditCellValue.

interface GridEditCellValueParams {
    debounceMs?: number;
    field: string;
    id: GridRowId;
    unstable_skipValueParser?: boolean;
    value: any;
}

Properties

debounceMs?: number

The debounce time in milliseconds.

field: string

The field.

The row id.

unstable_skipValueParser?: boolean

TBD

value: any

The new value for the cell.