🎒 Store the tab's detailed information.
1. Overview
The tab item is a child of the parent tabs. It has no user interface. Instead, it simply contains information about the name of the tab, and the content that will go inside it.
2. Object Properties
The table provides a summary of the object properties associated with the tab.
| Property | Type (Mandatory) | Description |
|---|---|---|
type | string | Always set to tab. |
title | string | The name of the tab displayed in the UI. |
content | array | An array containing child items. |
3. Sample Configuration
Here is a sample configuration of tab 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?
