> For the complete documentation index, see [llms.txt](https://docs.grid.glideapps.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.grid.glideapps.com/api/cells/rowidcell.md).

# RowIDCell

Renders a faded out text representation of a RowID

```typescript
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.
