Form Data

📄 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.

FunctionalityDescription
Field WidthFields in a form-data tile type occupies the complete width of the tile, each on a new line.
Multi-ColumnTo create a multi-column field layout, utilize the field-group layout type within form-data content.
CoexistenceBoth 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.

PropertyTypeRequirementDescription
typestringMandatoryAlways set to form-data.
contentarrayMandatoryContains an array of fields to be included in form-datatile type. The field and field-group items are also included in this tile.
titlestringOptionalAn 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?

If you require assistance or encounter any issues, please don't hesitate to contact us for further support.