AdaptableFlashingCell

Defines an Alert fired by AdapTable

TypeScript
export interface AdaptableFlashingCell extends
Extends

Identifiable

Properties

PropertyTypeDescription
cellDataChangedInfoCellDataChangedInfoData change which triggered the FlashingCell
direction'up' | 'down' | 'neutral'Direction of the change: 'up', 'down' or 'neutral'
flashColumnIdsRecord<string, boolean>Column Ids that are flashing
flashingCellDefinitionFlashingCellDefinitionRule that caused the FlashingCell to fire
flashTargetFlashingCellDefinition['FlashTarget']What will flash (e.g. Cell, Row)
rowPrimaryKeystringPrimary 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