Defines a Cell in Adaptable - every cell is an intersection of a Column Id and a Primary Key Value

TypeScript
export interface

Properties

PropertyDescription
columnColumn in which Cell is situated
displayValueDisplay value of Cell (e.g. if formatted)
isPivotCellIs Cell in a Pivot Column
isRowGroupCellIs Cell in a Row Group Column
normalisedValueNormalised value of Cell
primaryKeyValuePrimary Key column's value in row - how Adaptable locates the Cell
rawValueRaw value of Cell
rowNodeAG Grid Row Node that holds the Cell
visibleIs Cell in a currently filtered Row

Property Details

column

Column in which Cell is situated

TypeScript
column: AdaptableColumn<TData>;
Property Value

AdaptableColumn<TData>

displayValue

Display value of Cell (e.g. if formatted)

TypeScript
displayValue: any;
Property Value

any

isPivotCell

Is Cell in a Pivot Column

TypeScript
isPivotCell: boolean;
Property Value

boolean

isRowGroupCell

Is Cell in a Row Group Column

TypeScript
isRowGroupCell: boolean;
Property Value

boolean

normalisedValue

Normalised value of Cell

TypeScript
normalisedValue: any;
Property Value

any

primaryKeyValue

Primary Key column's value in row - how Adaptable locates the Cell

TypeScript
primaryKeyValue?: any;
Property Value

any

rawValue

Raw value of Cell

TypeScript
rawValue: any;
Property Value

any

rowNode

AG Grid Row Node that holds the Cell

TypeScript
rowNode: IRowNode<TData>;
Property Value

IRowNode<TData>

visible

Is Cell in a currently filtered Row

TypeScript
visible?: boolean;
Property Value

boolean