Feature #93431
closedIntroduce renderType 'default' to all TCA fields
0%
Description
Most TCA column types have rendering types. There is - in most cases a default rendering type called. However when switching to this default type the the empty string '' has to be used while neither 'default' nor 'Default' is allowed. As the rendering type is also called "Default" in the official documentation I would suggest to introduce it and to accept both the empty string and the string 'default' for the default rendering type.
'types' => [ 'withOverriddenColumns' => [ 'showitem' => 'record_type, title, color, text_1', 'columnsOverrides' => [ 'color' => [ 'config' => [ 'renderType' => 'default', 'readOnly' => true, 'size' => 10, ], ], ]
I would expect the output to be the same like
'types' => [ 'withOverriddenColumns' => [ 'showitem' => 'record_type, title, color, text_1', 'columnsOverrides' => [ 'color' => [ 'config' => [ 'renderType' => '', 'readOnly' => true, 'size' => 10, ], ], ]
However this produces an error, see attached Screen
Files
Updated by Lina Wolf almost 4 years ago
The above was tested with TYPO3 11.0.0
You can find above example in the T3Documentation branch of the extension styleguide:
Updated by Georg Ringer 5 months ago
- Status changed from New to Rejected
Hey Lina,
I don't see a need for more rendertypes, especially because we try to get rid of the type and do more specific types. therefore closing the issue - hope this is ok for you