AdaptableFlashingCell

Defines an Alert fired by AdapTable

TypeScript
export interface AdaptableFlashingCell extends
Extends

Identifiable

Properties

PropertyDescription
cellDataChangedInfoData change which triggered the FlashingCell
directionDirection of the change: 'up', 'down' or 'neutral'
flashColumnIdsColumn Ids that are flashing
flashingCellDefinitionRule that caused the FlashingCell to fire
flashTargetWhat will flash (e.g. Cell, Row)
rowPrimaryKeyPrimary Key Value of Row which is flashing

Property Details

cellDataChangedInfo

Data change which triggered the FlashingCell

TypeScript
cellDataChangedInfo?: CellDataChangedInfo;
Property Value

CellDataChangedInfo

direction

Direction of the change: 'up', 'down' or 'neutral'

TypeScript
direction: 'up' | 'down' | 'neutral';
Property Value

'up' | 'down' | 'neutral'

flashColumnIds

Column Ids that are flashing

TypeScript
flashColumnIds: Record<string, boolean>;
Property Value

Record<string, boolean>

flashingCellDefinition

Rule that caused the FlashingCell to fire

TypeScript
flashingCellDefinition: FlashingCellDefinition;
Property Value

FlashingCellDefinition

flashTarget

What will flash (e.g. Cell, Row)

TypeScript
flashTarget: FlashingCellDefinition['FlashTarget'];
Property Value

FlashingCellDefinition['FlashTarget']

rowPrimaryKey

Primary Key Value of Row which is flashing

TypeScript
rowPrimaryKey: string;
Property Value

string