[TYPO3-german] TCA > IRRE Feld wird nicht angezeigt

Axel Wüstemann awu at qbus.de
Thu Feb 27 17:20:12 CET 2014


Hallo,

ich habe meiner TCA ein Inline-Feld als Referenz auf eine andere Tabelle 
hinzugefügt (Relation 1:1).

Außer des Labels bekomme ich aber nichts zu sehen, kein Icon um einen 
neuen Datensatz anzulegen. Hab alles aus einem analog zu definierenden 
Feld kopiert und angepasst. Was könnte ich vergessen haben?

Activity zeigt auf ActivityMap.

TCA Activity
==============

Feld unter showItem und showRecordFieldList eingetragen

Feld:
'activity_map' => array(
     'exclude' => 0,
     'label' => 'Tourenkarte',
     'config' => array(
          'type' => 'inline',
          'foreign_table' => 'tx_traumzielmv_domain_model_acvtivitymap',
          'foreign_field' => 'activity',
          'minitems' => 0,
          'maxitems' => 1,
          'appearance' => array(
              'collapseAll' => 1,
              'levelLinksPosition' => 'top',
              'showSynchronizationLink' => 1,
	     'showPossibleLocalizationRecords' => 1,
	     'showAllLocalizationLink' => 1
          ),
      ),
),

TCA ActivityMap

Feld unter showItem und showRecordFieldList eingetragen

Feld:
'activity' => array(
     'exclude' => 0,
     'label' => 'Tour',
     'config' => array(
         'type' => 'select',
         'foreign_table' => 'tx_traumzielmv_domain_model_activity',
         'minitems' => 0,
         'maxitems' => 1,
      ),
  ),

ext_tables.sql
TABLE tx_traumzielmv_domain_model_activity
     activity_map int(11) unsigned DEFAULT '0',

TABLE tx_traumzielmv_domain_model_activitymap
     activity int(11) unsigned DEFAULT '0',

beide Tabellen/TCSs existieren in ext_tables.php

Datenbank aktualisiert, Cache geleert. T3 6.1.7

Danke
Axel


More information about the TYPO3-german mailing list