CoreColumn

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

Inheritors

Properties

Link copied to clipboard

The resolved accessor function to use when extracting the value for the column from each row. Will only be defined if the column def has a valid accessor key or function defined. API Docs Guide

Link copied to clipboard

The original column def used to create the column. API Docs Guide

Link copied to clipboard

The child column (if the column is a group column). Will be an empty array if the column is not a group column. API Docs Guide

Link copied to clipboard
abstract var depth: Int

The depth of the column (if grouped) relative to the root column def array. API Docs Guide

Link copied to clipboard

Returns the flattened array of this column and all child/grand-child columns for this column. API Docs Guide

Link copied to clipboard

Returns an array of all leaf-node columns for this column. If a column has no children, it is considered the only leaf-node column. API Docs Guide

Link copied to clipboard
abstract var id: String

The resolved unique identifier for the column resolved in this priority:

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

The parent column for this column. Will be undefined if this is a root column. API Docs Guide