🎛️ Control your page elements.
Overview
Tabs are tile-type items employed to simplify user interaction by enabling them to control the visibility of specific page elements. They allow users to prioritise important information and streamline the user interface for a user-friendly experience.
Object Properties
The table provides a summary of the object properties associated with the tabs tile type items, including their types, mandatory or optional status, and descriptions.
| Property | Type (Mandatory) | Description |
|---|---|---|
type | string | Always set to tabs. |
content | array | Contains an array of tab items. |
Note:The
contentis limited totabitems exclusively; no other types of items are allowed.
Sample Configuration
Here is a sample configuration of thetabs tile type item:
{
"type": "tabs",
"content": [
{
"type": "tab",
"title": "Primary information",
"content": [
{
"type": "form-data",
"content": [...]
}
]
},
{
"type": "tab",
"title": "Details",
"content": [
{
"type": "form-data",
"content": [...]
}
]
},
{
"type": "tab",
"title": "Dependencies",
"content": [
{
"type": "subrecord-table",
"title": false,
"record": "kalysys-dependencies",
"content": [...]
}
]
}
]
}
📌 Need Help?
