GridCell

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

TypeScript
export interface

Properties

PropertyTypeDescription
columnAdaptableColumn<TData>Column in which Cell is situated
displayValueanyDisplay value of Cell (e.g. if formatted)
isPivotCellbooleanIs Cell in a Pivot Column
isRowGroupCellbooleanIs Cell in a Row Group Column
normalisedValueanyNormalised value of Cell
primaryKeyValueanyPrimary Key column's value in row - how Adaptable locates the Cell
rawValueanyRaw value of Cell
rowNodeIRowNode<TData>AG Grid Row Node that holds the Cell
visiblebooleanIs 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