---
title: "Feature: #75497 - inline backend layout wizard"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-75497"
source: "Changelog/8.1/Feature-75497-InlineBackendLayoutWizard.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Feature: #75497 - inline backend layout wizard

See [forge#75497](https://forge.typo3.org/issues/75497)

## Description

A new renderType was added to render the backend layout wizard inline in FormEngine.

## Impact

The old `BackendLayoutWizardController` which has rendered the backend layout wizard in a popup has been removed.

Use the new renderType `belayoutwizard` to render the backend layout wizard inline in FormEngine.

example TCA configuration:

```php
'config' => array(
   'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:backend_layout.config',
   'config' => array(
      'type' => 'text',
      'renderType' => 'belayoutwizard',
   )
)
```
