CellHighlightInfo

Defines how a given Cell in AdapTable should be highlighted

TypeScript
export interface

Properties

PropertyTypeDescription
columnIdstringId of Column containing Cell
highlightStyleAdaptableStyleAdaptable Style to use in the Cell Highlight
primaryKeyValueanyPrimary Key Value of row containing Cell
timeoutnumberTime after which Cell should be unhighlighted

Property Details

columnId

Id of Column containing Cell

TypeScript
columnId: string;
Property Value

string

highlightStyle

Adaptable Style to use in the Cell Highlight

TypeScript
highlightStyle: AdaptableStyle;
Property Value

AdaptableStyle

primaryKeyValue

Primary Key Value of row containing Cell

TypeScript
primaryKeyValue?: any;
Property Value

any

timeout

Time after which Cell should be unhighlighted

TypeScript
timeout?: number;
Property Value

number