Additional properties that specify how a particular Alert will ALWAYS behave

TypeScript
export interface

Properties

PropertyDescriptionDefault
DisplayNotificationDisplays a notification when Alert is triggered
HighlightCellColours updated Row using MessageType of triggering Alert Definition
HighlightRowColours updated Row using MessageType of triggering Alert Definition
JumpToCellGrid will 'jump' to the changed cell which triggered the Alert
JumpToRowGrid will 'jump' to the newly added row which triggered the Alert
LogToConsoleLogs the Alert message to the console
NotificationDurationNotifiction duration(defaults to NotificationOptions.duration)
PreventEditAutomatically prevent any cell edit which triggered the Alert (i.e. validation)false
ShowInDivShows Alert text in the div specificed in alertContainer property of Container Options

Property Details

DisplayNotification

Displays a notification when Alert is triggered

TypeScript
DisplayNotification?: boolean;
Property Value

boolean

HighlightCell

Colours updated Row using MessageType of triggering Alert Definition

TypeScript
HighlightCell?: boolean | AdaptableStyle;
Property Value

boolean |AdaptableStyle

HighlightRow

Colours updated Row using MessageType of triggering Alert Definition

TypeScript
HighlightRow?: boolean | AdaptableStyle;
Property Value

boolean |AdaptableStyle

JumpToCell

Grid will 'jump' to the changed cell which triggered the Alert

TypeScript
JumpToCell?: boolean;
Property Value

boolean

JumpToRow

Grid will 'jump' to the newly added row which triggered the Alert

TypeScript
JumpToRow?: boolean;
Property Value

boolean

LogToConsole

Logs the Alert message to the console

TypeScript
LogToConsole?: boolean;
Property Value

boolean

NotificationDuration

Notifiction duration(defaults to NotificationOptions.duration)

TypeScript
NotificationDuration?: NotificationsOptions['duration'];
Property Value

NotificationsOptions['duration']

PreventEdit

Automatically prevent any cell edit which triggered the Alert (i.e. validation)

TypeScript
PreventEdit?: boolean;
Default Value

false

Property Value

boolean

ShowInDiv

Shows Alert text in the div specificed in alertContainer property of Container Options

TypeScript
ShowInDiv?: boolean;
Property Value

boolean