Bug #87426
closedlabel_alt + label_alt_force for IRRE childs cannot be overwritten using OverrideChildTca()
0%
Description
I tried to overwrite childs (IRRE) appearance (label_alt, label_alt_force) for performance reasons in BE (https://forge.typo3.org/issues/82730):
'columns' => [
'childs' => [
'config' => [
'type' => 'inline',
'foreign_table' => 'tx_ext_domain_model_child',
'foreign_field' => 'parent',
'overrideChildTca' => [
'ctrl' => [
'label_alt' => '',
'label_alt_force' => false,
]
],
],
],
]
Updated by Georg Ringer almost 6 years ago
overrideChildTca
can currently only be used for overriding types and columns but not the ctrl section, see \TYPO3\CMS\Backend\Form\FormDataProvider\InlineOverrideChildTca
. This is not really easy to solve as code like BackendUtility and others rely on checking the TCA directly without passing required information like the parent table.
don't expect that to be changed, even more I tend to close this issue - it is certainly a feature and not a bug.
Updated by Georg Ringer almost 6 years ago
- Status changed from New to Needs Feedback
- Priority changed from Must have to Could have
Updated by Jan Kornblum almost 6 years ago
OK, thanks for the explanation... Close it or let it be a possible missing feature ;)
Updated by Riccardo De Contardi over 5 years ago
- Status changed from Needs Feedback to Closed
Thank you for your reply and sorry for this late update; I close this one for now. Feel free to reopen it or ping me if in need.
Best regards.
Updated by Markus Klein over 4 years ago
- Related to Bug #82730: Opening record in backend painfully slow with foreign table and large main table added