[TYPO3-german] Re: Inline IRRE

mac pat me at patric.at
Fri Mar 9 16:10:27 CET 2018


Okay, ich hab es zumindest geschafft das Datum von der Standard Sprache zu holen. Aber im Frontend wird es nicht angezeigt. Nur bei der Standardsprache.

Hab es mit 
'behaviour' => [
                    'localizationMode' => 'keep',
                    'localizeChildrenAtParentLocalization' => FALSE,
                ],
gelöst.

Hier das Feld aus dem TCA.

'dateandtime' => [
            'exclude' => true, 
	        'label' => 'DatetimeLaben',
	        'config' => [
			    'type' => 'inline',
			    'foreign_table' => 'tx_bla_domain_model_dateandtime',
                'foreign_label' => 'dateandtime',
			    'minitems' => 0,
			    'maxitems' => 99,
			    'appearance' => [
			        'collapseAll' => 0,
                    'expandSingle' => 0,
			        'levelLinksPosition' => 'bottom',
			        'showSynchronizationLink' => 1,
			        'showPossibleLocalizationRecords' => 1,
			        'showAllLocalizationLink' => 1
			    ],
                'behaviour' => [
                    'localizationMode' => 'keep',
                    'localizeChildrenAtParentLocalization' => FALSE,
                ],
			],
	    ],


More information about the TYPO3-german mailing list