Alert Box

 

Overview

The alert box dispalys an alert message, when the value of a field is changed or when a form is loaded. It is used in the on user input field action or on load form action script.

Syntax

alert <value>;

where,

  • value - the alert message to be displayed.

Example

Alerts the week of the year of a date field when a date is entered by the user.

form  FormA
{
    
    Date1
    (
        type  =  date
        on user input
        {
            alert(input.Date1.getWeekOfYear() + "th week of the year");
        }
    )

}