On Record Add
- Last UpdatedJun 25, 2024
- 1 minute read
Use scripts for the On Record Add event of a Base Form container to accomplish a desired operation when a record is added to the Base Form at run-time.
Example
If you want to show an information message when you add records to the Employee Details (B1) container at run-time, then you can code the script for the On Record Add event of the Employee Details (B1) container as follows:
// Show the number of records present.
alert("Number of records present: " + control.records().length);