autocomplete

autocomplete ('type' => 'email')
Path

$GLOBALS['TCA'][$table]['columns'][$field]['config']

type

boolean

Scope

Display

Controls the autocomplete attribute of a given email field. If set to true (default false), adds attribute autocomplete="on" to the email input field allowing browser auto filling the field:

'email' => [
   'label' => 'email',
   'config' => [
      'type' => 'email',
      'size' => 20,
      'nullable' => true,
      'autocomplete' => true
   ]
],
Copied!