Glide Data Grid
CtrlK
  • πŸ‘‹Welcome to Glide Data Grid
  • πŸš€Extended QuickStart Guide
    • ✏️Editing Data
    • πŸ–±οΈWorking with selections
    • πŸ”¨Grid Columns
    • πŸ“ŽCopy and paste support
  • πŸ“’FAQ
  • πŸ“šAPI
    • DataEditor
      • Required Props
      • Important Props
      • Row Markers
      • Editing
      • Input Interaction
      • Selection Handling
      • Custom Cells
      • Drag and Drop
      • Search
      • Styling
    • DataEditorCore
    • Cells
      • BaseGridCell
      • TextCell
      • BooleanCell
      • NumberCell
      • UriCell
      • ProtectedCell
      • RowIDCell
      • LoadingCell
      • ImageCell
      • MarkdownCell
      • BubbleCell
      • DrilldownCell
    • Common Types
    • DataEditorRef
  • Guides
    • Implementing Custom Cells
Powered by GitBook
On this page
  • data
  • readonly

Was this helpful?

  1. πŸ“šAPI
  2. Cells

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.

PreviousProtectedCellNextLoadingCell

Last updated 1 year ago

Was this helpful?