Alert Box
The alert box displays 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
where,
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"); } )
}
|