Success Message
Overview
The on success message is displayed on successful submission of
form data. By default, the message "Data Added Successfully"
is displayed. If you want to customize this message, you have to specify
the same in the success message string as shown below.
Syntax
on add
{
on success
{
success message "";
}
}
|
Example
on add
{
on success
{
success message "employee record added";
}
}
|
Related Links
Form Actions -> On Success
|