QuickSearchState
State used by Quick Search
TypeScript
interface
Properties
Property | Description | Default |
---|---|---|
activeCellStyle | Cell Style for currently Active Cell (available when disableNavigation is false) | |
activeTextStyle | Text Style for currently Active Cell (available when disableNavigation is false) | |
disableNavigation | Prevent navigation through search results using arrow keys | false |
highlightCellStyle | Cell Style for matching Cells | |
highlightTextStyle | Text Style for matching Cells | |
quickSearchDebounceTime | Debounce timeout for Quick Search input | 250 |
searchPlaceholder | Placeholder text for Quick Search input | 'Search' |
searchText | Text used to run Quick Search |
Property Details
activeCellStyle
Cell Style for currently Active Cell (available when disableNavigation
is false)
TypeScript
activeCellStyle?: AdaptableCellStyle;
Property Value
AdaptableCellStyle
activeTextStyle
Text Style for currently Active Cell (available when disableNavigation
is false)
TypeScript
activeTextStyle?: AdaptableCellStyle;
Property Value
AdaptableCellStyle
disableNavigation
Prevent navigation through search results using arrow keys
TypeScript
disableNavigation?: boolean;
Default Value
false
Property Value
boolean
highlightCellStyle
Cell Style for matching Cells
TypeScript
highlightCellStyle?: AdaptableCellStyle;
Property Value
AdaptableCellStyle
highlightTextStyle
Text Style for matching Cells
TypeScript
highlightTextStyle?: AdaptableCellStyle;
Property Value
AdaptableCellStyle
quickSearchDebounceTime
Debounce timeout for Quick Search input
TypeScript
quickSearchDebounceTime?: number;
Default Value
250
Property Value
number
searchPlaceholder
Placeholder text for Quick Search input
TypeScript
searchPlaceholder?: string;
Default Value
'Search'
Property Value
string
searchText
Text used to run Quick Search
TypeScript
searchText?: string;
Property Value
string