Bug #92685
closedSelect with multiple values in site configuration not stored correctly
100%
Description
Using a select type with renderTyp selectCheckBox in the sites configuration:
'myOptions' => [ 'label' => 'Options', 'config' => [ 'type' => 'select', 'renderType' => 'selectCheckBox', 'items' => [ ['Option A', 'option_a'], ['Option B', 'option_b'], ['Option C', 'option_c'], ['Option D', 'option_d'], ], ], ],
The options are stored in config.yaml as an array, e.g.:
myOptions: - option_a - option_b
But after saving the options are not activated in the form anymore. This is due the fact that for the renderTypes selectSingleBox, selectCheckBox and selectMultipleSideBySide the selected items are expected as a comma-separated list. So correct would be instead:
myOptions: 'option_a,option_b'
Files
Updated by Gerrit Code Review about 4 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/+/66256
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/+/66256
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/+/68639
Updated by Chris Müller over 3 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 2bcddd8cc32e0dfd59e18bd36e4badea37ebf400.