function header_getContext<TFeatures, TData, TValue>(header): object;function header_getContext<TFeatures, TData, TValue>(header): object;Defined in: core/headers/coreHeadersFeature.utils.ts:55
Builds the render context passed to a column's header or footer template.
The context contains the header, its column, and the owning table instance.
TFeatures extends TableFeatures
TData extends RowData
TValue
Header<TFeatures, TData, TValue>
object
column: Column<TFeatures, TData, TValue> = header.column;column: Column<TFeatures, TData, TValue> = header.column;header: Header<TFeatures, TData, TValue>;header: Header<TFeatures, TData, TValue>;table: Table_Internal<TFeatures, TData> = header.column.table;table: Table_Internal<TFeatures, TData> = header.column.table;const context = header_getContext(header)const context = header_getContext(header)