---
title: "Feature: #70033 - Introduced TCA option showIconTable for selectSingle fields"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-70033"
source: "Changelog/7.6/Feature-70033-IntroducedTcaOptionShowIconTableForSelectSingleFields.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #70033 - Introduced TCA option showIconTable for selectSingle fields

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

## Description

A new option `showIconTable` has been introduced for select fields with render type `selectSingle` to enforce or prevent the
icon table underneath the field. By default the icon table is not shown.

### Example

```php
// Enforce icon table showing flags
$GLOBALS['TCA']['tt_content']['columns']['sys_language_uid']['config']['showIconTable'] = true;
```
