RuleBasedAlertDefinition

Alert that fires when data matches a rule in the given column scope

TypeScript
export interface RuleBasedAlertDefinition extends
Extends

AlertDefinitionBase

Properties

PropertyTypeDescription
AlertFormstring |AlertButtonFormForm to display in Alert with buttons and inputs
AlertPropertiesRuleAlertPropertiesProperties which set what happens when the Alert is triggered (notification and grid behaviours)
RuleAlertRuleWhen Alert should be triggered
ScopeColumnScopeWhere Alert can be triggered: one, some or all columns or DataTypes
IsReadOnlybooleanSets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
IsSuspendedbooleanSuspends (i.e. turns off) an Adaptable Object

Property Details

AlertForm

Form to display in Alert with buttons and inputs

TypeScript
AlertForm?: string | AlertButtonForm;
Property Value

string |AlertButtonForm

AlertProperties

Properties which set what happens when the Alert is triggered (notification and grid behaviours)

TypeScript
AlertProperties?: RuleAlertProperties;
Property Value

RuleAlertProperties

Rule

When Alert should be triggered

TypeScript
Rule: AlertRule;
Property Value

AlertRule

Scope

Where Alert can be triggered: one, some or all columns or DataTypes

TypeScript
Scope: ColumnScope;
Property Value

ColumnScope

IsSuspended

Inherited from SuspendableObject

Suspends (i.e. turns off) an Adaptable Object

TypeScript
IsSuspended?: boolean;
Property Value

boolean

IsReadOnly

Inherited from AdaptableObject

Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')

TypeScript
IsReadOnly?: boolean;
Property Value

boolean