← Extensions
TYPO3 14 LTS BackendTCAWizardUX

EXT:record_wizard

Brings the guided step-by-step creation wizard — known from the TYPO3 page creation dialog — into the backend list module for any record type.


The TYPO3 page creation wizard guides editors through the creation process step by step. This extension brings the same pattern into the backend list module — for any table and record type.

Installation

composer require georgringer/record-wizard

After installation, add the desired tables under Admin Tools → Settings → Extension Configuration:

wizardTables = tx_news_domain_model_news

Multiple tables are separated by commas.

Configuration via TCA

The wizard steps are defined directly in the TCA of the respective type:

'types' => [
    '0' => [
        'wizardSteps' => [
            'basics' => [
                'title' => 'Basic Information',
                'fields' => ['title', 'slug', 'date'],
            ],
            'details' => [
                'title' => 'Details',
                'fields' => ['description', 'bodytext'],
                'after' => ['basics'],
            ],
        ],
        'showitem' => '...',
    ],
],

Each step requires:

  • title — step label (LLL references are supported)
  • fields — TCA columns shown on this step
  • after (optional) — ordering between steps

Requirements

PackageVersion
TYPO3 CMS14 LTS