AdaptableFlashingCell
Defines an Alert fired by AdapTable
TypeScript
export interface AdaptableFlashingCell extendsExtends
Properties
| Property | Description |
|---|---|
| cellDataChangedInfo | Data change which triggered the FlashingCell |
| direction | Direction of the change: 'up', 'down' or 'neutral' |
| flashColumnIds | Column Ids that are flashing |
| flashingCellDefinition | Rule that caused the FlashingCell to fire |
| flashTarget | What will flash (e.g. Cell, Row) |
| rowPrimaryKey | Primary Key Value of Row which is flashing |
Property Details
cellDataChangedInfo
Data change which triggered the FlashingCell
TypeScript
cellDataChangedInfo?: CellDataChangedInfo;Property Value
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
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