Attention
TYPO3 v11 has reached end-of-life as of October 31th 2024 and is no longer being maintained. Use the version switcher on the top left of this page to select documentation for a supported version of TYPO3.
Need more time before upgrading? You can purchase Extended Long Term Support (ELTS) for TYPO3 v10 here: TYPO3 ELTS.
Example
Select multiple values from a box
[
'columns' => [
'select_singlebox_1' => [
'exclude' => 1,
'label' => 'select_singlebox_1 description',
'description' => 'field description',
'config' => [
'type' => 'select',
'renderType' => 'selectSingleBox',
'items' => [
[
'foo 1',
1,
],
[
'foo 2',
2,
],
[
'divider',
'--div--',
],
[
'foo 3',
3,
],
[
'foo 4',
4,
],
],
],
],
],
]
Copied!