[TYPO3-german] Extbase: Bidirektionale MN-Relation -> TCA Inline

M S ms12345 at trashmail.de
Thu Feb 23 13:55:33 CET 2017


Hallo zusammen,

ich habe eine bidirektionale MN-Relation zum Bearbeiten der Datensätze über das Backend. Kappt wunderbar wenn der Typ im TCA als "Select" angegeben ist.

Das habe ich:

'productattributes' => array(
'exclude' => 1,
'label' => 'LLL:EXT:myext/Resources/Private/Language/locallang_db.xml:tx_myext_domain_model_product.productattributes',
'config' => array(
'type' => 'select',
'foreign_table' => 'tx_myext_productattribute_product_mm',
'foreign_field' => 'uid_local',
'minitems' => 0,
'maxitems' => 99,
),
),
),

'products' => array(
'exclude' => 1,
'label' => 'LLL:EXT:myext/Resources/Private/Language/locallang_db.xml:tx_myext_domain_model_productattribute.products',
'config' => array(
'type' => 'select',
'multiple' => 0,
'foreign_table' => 'tx_myext_domain_model_product',
'MM' => 'tx_myext_productattribute_product_mm',
'MM_opposite_field' => 'productattributes',
'minitems' => 0,
'maxitems' => 99,
),
),

Ich bräuchte es aber als Inline. Wie geht es? Wenn ich den Typ einfach auf "Inline" ändere, sehe ich gar nichts mehr.
-- 
Kind regards,
Michael

forum.typo3.org/index.php?t=tree&th=208338 direct_mail
forum.typo3.org/index.php?t=tree&th=210808 powermail
forum.typo3.org/index.php?t=tree&th=212804 Core
forum.typo3.org/index.php?t=tree&th=213115 clickenlarge


More information about the TYPO3-german mailing list