Generic HTML Form
Generic HTML Forms are not linked to any specific record and have no data.
They provide a mechanism for you to code your own HTML form in an app with any code you provide.
eg:
Name:
<input name="name">
<input type="submit">
You would need to further provide the processing code for what to do with the submitted data.
Code Events
- Before Process
- Before Render
- On Render
- Before Submit
- After Submit
Please refer to 📜Code Events for more details.