---
title: "Feature: #70126 - Introduce TCA option to add autocomplete attribute to input fields"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-70126"
source: "Changelog/7.6/Feature-70126-IntroduceTcaOptionToAddAutocompleteAttributeToInputFields.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #70126 - Introduce TCA option to add autocomplete attribute to input fields

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

## Description

It is now possible to enforce or disable the auto completion for input fields in edit mode.
The option is called `autocomplete` and can be set to TRUE or FALSE in the config section of a field.

### Example

```php
// Prevent auto completion of username field for be_users records
$GLOBALS['TCA']['be_users']['columns']['username']['config']['autocomplete'] = FALSE;
```
