CoreCell

external interface CoreCell<TData : RowData, TValue>(source)

Inheritors

Properties

Link copied to clipboard
abstract var column: Column<TData, TValue>

The associated Column object for the cell. API Docs Guide

Link copied to clipboard
abstract var getContext: () -> CellContext<TData, TValue>

Returns the rendering context (or props) for cell-based components like cells and aggregated cells. Use these props with your framework's flexRender utility to render these using the template of your choice: API Docs Guide

Link copied to clipboard
abstract var getValue: Getter<TValue>

Returns the value for the cell, accessed via the associated column's accessor key or accessor function. API Docs Guide

Link copied to clipboard
abstract var id: String

The unique ID for the cell across the entire table. API Docs Guide

Link copied to clipboard
abstract var renderValue: Getter<TValue?>

Renders the value for a cell the same as getValue, but will return the renderFallbackValue if no value is found. API Docs Guide

Link copied to clipboard
abstract var row: Row<TData>

The associated Row object for the cell. API Docs Guide