Jonas
Jonas

Reputation: 379

TYPO3 use parentRec in TCA

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

Answers (1)

Mathias Brodala
Mathias Brodala

Reputation: 6480

Yes, parentRec is limited to FlexForms.

Depending on your usecase this could be done with columnsOverrides together with overrideChildTca.

Upvotes: 3

Related Questions