CellContext
class CellContext<TData, TValue>(val cell: Cell<TData, TValue>, val column: Column<TData, TValue>, val getValue: () -> TValue, val renderValue: () -> TValue?, val row: Row<TData>, val table: Table<TData>)
Context object passed to cell renderers. Carries the cell, its column, row and owning table, plus value accessors. getValue returns the raw cell value, while renderValue returns the value or the configured renderFallbackValue when null.