CellHighlightInfo

Defines how a given Cell in AdapTable should be highlighted

TypeScript
export interface

Properties

PropertyDescription
columnIdId of Column containing Cell
highlightStyleAdaptable Style to use in the Cell Highlight
primaryKeyValuePrimary Key Value of row containing Cell
timeoutTime 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