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