Bug #93331
closedRendering of selectCheckBox TCA is broken with item descriptions
100%
Description
I want to add a description to the corresponding items of the selectCheckBox input type. If i proceed like in the doku ref. (see here: https://docs.typo3.org/m/typo3/reference-tca/10.4/en-us/ColumnsConfig/Type/selectCheckBox.html#items ), then the output is somehow grouped.
Here my minimal reproduction snippet (add it somewhere in a tca php file):
'column' => [
'exclude' => true,
'label' => 'test title',
'description' => 'test descr',
'config' => [
'type' => 'select',
'renderType' => 'selectCheckBox',
'items' => [
[
'item title 1',
'1',
'',
'item desc 1',
],
[
'item title 2',
'2',
'',
'item desc 2',
],
],
],
],
Preview:
if i insert a null on the 4th position, then the grouping bug is fixed, but no description is shown.
[
'item title 1',
'1',
'',
null,
'item desc 1',
],
Preview:
i think it has to do with this:
https://review.typo3.org/c/Packages/TYPO3.CMS/+/63889
Files
Updated by Georg Ringer almost 4 years ago
- Related to Bug #92383: selectCheckBox with description renders multiple select groups added
Updated by Gerrit Code Review over 3 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68616
Updated by Gerrit Code Review over 3 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68616
Updated by Gerrit Code Review over 3 years ago
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68616
Updated by Gerrit Code Review over 3 years ago
Patch set 4 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68616
Updated by Gerrit Code Review over 3 years ago
Patch set 1 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68619
Updated by Gerrit Code Review over 3 years ago
Patch set 2 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68619
Updated by Oliver Bartsch over 3 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 02c42d8a4fbff43be2a368c8b67715be4eea9227.
Updated by Gerrit Code Review over 3 years ago
- Status changed from Resolved to Under Review
Patch set 3 for branch 10.4 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/68619
Updated by Oliver Bartsch over 3 years ago
- Status changed from Under Review to Resolved
Applied in changeset 936c9bebfc78be9f1225d3f08faaf9cfb84f2fc8.