Alert Control
The Alert Control provides a mechanism to display important messages or notifications to users. It allows for customization of the alert type, title, description, action text, and more, enabling versatile use cases for various notifications.

Binding Data Options
The Alert Control facilitates the display of dynamic content using the Bind Data option. It accepts several data inputs.
Static Data Option
Title
: Represents the title of the alert.Description
: Specifies the detailed description or message to be conveyed.Action Text
: Defines the text label for the action button.Alert Type
: Indicates the type of alert (e.g., Info, Note, Alert).
{
"Title": "This is a Sample Alert",
"Description": "This is the sample alert text.",
"Action Text": "Action",
"Alert Type": "Info"
}
Properties
Property | Description |
---|---|
Alert Type | Specifies the type of alert (Info , Success , Alert , Warning , Error ). |
Title | Sets the title of the alert. |
Note | Represents additional notes or descriptive text. |
Description | Defines the detailed description or message content. |
Action Text | Specifies the text label for the action button. |

Alert Type
This specifies the type of alert. There are five types of alert available:
Type | Description |
---|---|
Info | Indicates an informational alert as an output. |
Success | Indicates an success alert as an output. |
Alert | Indicates an notification alert as an output. |
Warning | Indicates an warning alert as an output. |
Error | Indicates an error alert as an output. |
Description
Defines the detailed description or message content which now supports two types of input.
Type | Description |
---|---|
Markdown | A lightweight markup language used to format text with plain syntax. It converts easily to HTML for styled content. |
Plain Text | Unformatted text that contains no styling or special formatting. It displays exactly as typed, without interpretation. |

Control Outputs
The outputs from the Alert Control, represented by the placeholder {{alert}}
, can be utilized in other controls, data queries, or JavaScript functions using the control's unique name.
Output | Description |
---|---|
alert | Represents the data of the selected alert in the control. |
Events
Property | Description |
---|---|
Action_Click | Occurs when the action button in the alert control is clicked, typically triggering an action. |