RowIDCell
Renders a faded out text representation of a RowID
export interface RowIDCell extends BaseGridCell {
readonly kind: GridCellKind.RowID;
readonly data: string;
readonly readonly?: boolean;
}
data
The string representation of the RowID
readonly
Determines if the cell will accept edit events.
Last updated
Was this helpful?