Hallo Typo3 Community! 
Ich habe mir meine erste eigene Extension gebastelt, damit ein BE-User ein paar spezifische Artikelfelder eingeben kann.
Im Feld "abmessung" soll der Table Wizard benutzt werden können. Das Icon erscheint aber nicht.
Das Feld habe ich wie folgt im Kickstarter konfiguriert:
Field Name "Abmessung"
Field Type "Text Area"
CheckBox "Add Wizard Example" angeklickt
Das Feld "abmessung" in der tca.php meiner Extension ist in den Zeilen mit X abgeändert worden in
PHP-Code:
'abmessung' => array (
'exclude' => 0,
'label' => 'LLL:EXT:mein_artikel/locallang_db.xml:tx_meinartikel_content.abmessung',
'config' => array (
'type' => 'text',
'cols' => '30',
'rows' => '5',
'wizards' => array(
'_PADDING' => 2,
X 'table' => Array(
X 'notNewRecords' => 1,
X 'enableByTypeConfig' => 1,
X 'type' => 'script',
X 'title' => 'Table wizard',
X 'icon' => 'wizard_table.gif',
X 'script' => 'wizard_table.php',
X 'params' => array('xmlOutput' => 0),
),
),
)
),
Aber Table Wizard Icon erscheint im BE neben dem Feld "abmessung" einfach nicht!
In Google finde ich nichts zu diesem Thema.
Erfolglos ausprobiert habe ich auch die Zeile 'script' => '../../../typo3/wizard_table.php', sowie die Datei wizard_table.php ins Extension Verzeichnis zu kopieren.
Hat jemand eine Idee? 
Vielen Dank