Examples¶
Set of radio buttons field¶

EXT:styleguide/Configuration/TCA/tx_styleguide_elements_basic.php¶
[
'columns' => [
'radio_1' => [
'label' => 'description',
'description' => 'radio_1 three options, one without label',
'config' => [
'type' => 'radio',
'items' => [
[
'label' => 'foo',
'value' => 1,
],
[
'label' => '',
'value' => 2,
],
[
'label' => 'foobar',
'value' => 3,
],
],
],
],
],
]