Form
In this demonstration step, you will create the Task form and configure the first data field.
REFERENCE
For a more detailed explanation of forms, see the Interface Guide: Forms.
Objective
Upon completing this step, you will have:
- A form called Task.
- An associated table in the database.
- A required field to store the task name.
- An interface ready to create, edit, search, and remove records.
Prerequisites
Verify that:
- The demonstration application has already been created.
- The configuration step has already been completed.
- You are in the platform's development area.
Create the Form
- In the upper right corner, click Build.
- In the main menu, go to Management > Forms.
- In Form Title, fill in
Task. - In Table Name, enable the Auto option.
- Click Save.
NOTE
- Form Title defines the name shown in the sidebar menu.
- Table Name defines the technical identifier used in the database.
After saving, the Task form will be available in the left sidebar menu.
Create the First Field
With the form created:
- In the sidebar menu, click Task.
- In Display Name, fill in
Name. - Verify that the technical name was automatically generated in lowercase.
- Enable the Primary Key option (unique field).
- Enable the Not Null option (required field).
- In Type, select
text. - Click Save.
TIP
- Primary Key ensures unique values for each record.
- Not Null makes the field required.
- The
texttype allows storing plain text.
Validate the Result
Open the preview area and verify that:
- The Task form is available.
- The Name field appears for input.
- It is possible to create a new record.
- The Name field is required.
EXPECTED RESULT
If the configuration is correct, the form will be ready for create, edit, search, and remove record operations.
Next Steps
Proceed to the next Database step to explore and modify the demo application.