AdaptableAlertBase

Defines the base(common) properties of an Alert fired by AdapTable, regardless of the type of change

TypeScript
export interface AdaptableAlertBase<T> extends
Extends

Identifiable

Properties

PropertyDescription
alertDefinitionRule that caused Alert to fire
alertTypeThe type of Alert
headerAlert Header text
messageAlert Body text

Property Details

alertDefinition

Rule that caused Alert to fire

TypeScript
alertDefinition: AlertDefinition;
Property Value

AlertDefinition

alertType

The type of Alert

TypeScript
alertType: T;
Property Value

T

Alert Header text

TypeScript
header: string;
Property Value

string

message

Alert Body text

TypeScript
message: string;
Property Value

string