AlertFormContext

Context required by functions when using an Alert Button

TypeScript
export interface AlertFormContext<TData = any> extends
Extends

FormContext

Properties

PropertyTypeDescription
alertAdaptableAlert<TData>Alert that has been triggered
adaptableContextanyCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

alert

Alert that has been triggered

TypeScript
alert: AdaptableAlert<TData>;
Property Value

AdaptableAlert<TData>

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any