Actions
Bug #93595
closedTCA inline element: appearance config partially not working
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2021-02-26
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Updating from TYPO3 v10.4.8 to v10.4.9 the TCA config['appearance']['enabledControls']['new'] = false for inline elements is not respected anymore. I still get the button Create new for new child-record.
This is my TCA config:
'myField' => [
'exclude' => true,
'label' => 'News',
'config' => [
'type' => 'inline',
'foreign_table' => 'tx_news_domain_model_news',
'foreign_field' => 'author',
'disableMovingChildrenWithParent' => true,
'enableCascadingDelete' => false,
'appearance' => [
'useSortable' => false,
'enabledControls' => [
'info' => false,
'new' => false,
'dragdrop' => false,
'sort' => false,
'hide' => false,
'delete' => false,
'localize' => false,
],
],
]
],
See attached screenshots.
Files
Actions