Adaptable State Section for Quick Search Module

TypeScript
export interface QuickSearchState extends
Extends

BaseState

Properties

PropertyDescription
CellMatchStyleStyle used to highlight matching cells
CurrentTextMatchStyleStyle used to highlight matching text within current match (not availale in SSRM)
QuickSearchTextLast Quick Search that was run (and will be applied at start-up)
TextMatchStyleStyle used to highlight matching text within a cell (not availale in SSRM)

Property Details

CellMatchStyle

Style used to highlight matching cells

TypeScript
CellMatchStyle?: Omit<AdaptableStyle, 'ClassName'>;
Property Value

Omit<AdaptableStyle, 'ClassName'>

CurrentTextMatchStyle

Style used to highlight matching text within current match (not availale in SSRM)

TypeScript
CurrentTextMatchStyle?: Omit<AdaptableStyle, 'ClassName'>;
Property Value

Omit<AdaptableStyle, 'ClassName'>

QuickSearchText

Last Quick Search that was run (and will be applied at start-up)

TypeScript
QuickSearchText?: string;
Property Value

string

TextMatchStyle

Style used to highlight matching text within a cell (not availale in SSRM)

TypeScript
TextMatchStyle?: Omit<AdaptableStyle, 'ClassName'>;
Property Value

Omit<AdaptableStyle, 'ClassName'>