GridCell
Defines a Cell in Adaptable - every cell is an intersection of a Column Id and a Primary Key Value
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| column | Column in which Cell is situated |
| displayValue | Display value of Cell (e.g. if formatted) |
| isPivotCell | Is Cell in a Pivot Column |
| isRowGroupCell | Is Cell in a Row Group Column |
| normalisedValue | Normalised value of Cell |
| primaryKeyValue | Primary Key column's value in row - how Adaptable locates the Cell |
| rawValue | Raw value of Cell |
| rowNode | AG Grid Row Node that holds the Cell |
| visible | Is 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