Reputation: 379
With FLexform it is possible to get check a parent Field using
<displayCond>FIELD:parentRec.field:=:value</displayCond>
Can I use the same method for simple TCA (my child is type inline)?
'displayCond' => 'FIELD:parentRec.field:=:value',
This doesn't work for me. TYPO3 version 8.7
Upvotes: 0
Views: 1199
Reputation: 6480
Yes, parentRec
is limited to FlexForms.
Depending on your usecase this could be done with columnsOverrides
together with overrideChildTca
.
Upvotes: 3