📄 Display standard form fields within your page.
1. Overview
The form-data tile type is utilised to display standard form fields within a page. These specific tiles represent designated areas of our page, where user interaction takes place. Every Entry Layout arrangement must include a minimum of one functional form-data.
| Functionality | Description |
|---|---|
Field Width | Fields in a form-data tile type occupies the complete width of the tile, each on a new line. |
Multi-Column | To create a multi-column field layout, utilize the field-group layout type within form-data content. |
Coexistence | Both the field and field-group items can coexist simultaneously. |
2. Object Properties
The table provides a summary of the object properties associated with the Form Data tile type, including their types, mandatory or optional status, and descriptions.
| Property | Type | Requirement | Description |
|---|---|---|---|
type | string | Mandatory | Always set to form-data. |
content | array | Mandatory | Contains an array of fields to be included in form-datatile type. The field and field-group items are also included in this tile. |
title | string | Optional | An optional title displayed at the top of the form-data tile. |
3. Sample Configuration
Here is a sample configuration for incorporation of the form-data tile type:
{
"type": "form-data",
"content": [
{
"type": "field-group",
"content": [
{
"type": "field",
"field": "first-name"
},
{
"type": "field",
"field": "last-name"
}
]
},
{
"type": "field",
"field": "notes"
}
]
}📌 Need Help?
