ProgressIndicatorConfig

Config when displaying a Progress Indicator

TypeScript
export interface

Properties

PropertyDescription
delayLength of Delay
frameworkComponentA React, Angular or Vue Framework component to use
renderRender function
renderModeDetermines whether custom component is rendered as "content" (inside window) or "dialog" (replacing window)
textText to display

Property Details

delay

Length of Delay

TypeScript
delay?: number;
Property Value

number

frameworkComponent

A React, Angular or Vue Framework component to use

TypeScript
frameworkComponent?: AdaptableFrameworkComponent;
Property Value

AdaptableFrameworkComponent

render

Render function

TypeScript
render?: CustomRenderFunction;
Property Value

CustomRenderFunction

renderMode

Determines whether custom component is rendered as "content" (inside window) or "dialog" (replacing window)

TypeScript
renderMode?: 'content' | 'dialog';
Property Value

'content' | 'dialog'

text

Text to display

TypeScript
text?: string;
Property Value

string