Component description
The section-title component creates titles for sections of the page. It can have different visual characteristics depending on its configured actions and parameters.
Example
Minimal JSON
{
"type": "section-title",
"title": ""
}{
"key": "section_objects_table",
"template": {
"componentId": "template#section_objects_table",
"type": "section-title",
"title": "template.section_title_objects_table",
"parameters": [
{
"name": "anchor",
"value": "true"
},
{
"name": "visible",
"value": "false"
}
]
}
}Example taken from the core package.
Nested properties
| Name | Description | Values | Mandatory |
|---|---|---|---|
type | section-title | string | Yes |
title | Translation key of the title. Define the key in translations to specify how the text is displayed in the UI. Unlike the name property, if you use a specific string of text for the title, this text will appear with the package key. For example, Comment Section will be displayed as package_key_comment section. | string | Yes |
actions | Adds actions to the section title. | array | No |
componentId | Unique ID of a component. If left empty, a random string will be generated. Primarily used in patch packages to define the component's position within the layout (template). | string | No |
parameters | Modifies the functions of the section title. | array | No |
tooltipKey | Translation key of the tooltip that appears when hovering over the property. Define in translations to specify how the text is displayed in the UI. | string | No |