---
title: "Feature: #89032 - Render fieldControl for SelectSingleElement"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-89032"
source: "Changelog/10.3/Feature-89032-RenderFieldControlForSelectSingleElement.rst"
typo3-version: "10.3"
typo3-major: 10
type: "feature"
issue: 89032
forge: "https://forge.typo3.org/issues/89032"
tags: ["Backend", "TCA", "ext:backend"]
rendered: "2026-09-25T23:17:45+00:00"
---

# Feature: #89032 - Render fieldControl for SelectSingleElement {#feature-89032}

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

## Description {#description}

The missing rendering for the `fieldControl` option for SelectSingleElements was added.

## Impact {#impact}

It is now possible to use the `fieldControl` option for SelectSingleElements
to add nodes and wizards.

For example, add a link popup button to a select called "field_name" of the pages table:

```php
$GLOBALS['TCA']['pages']['columns']['field_name']['config']['fieldControl']['linkPopup'] = [
 'renderType' => 'linkPopup',
];
```
