autocomplete

autocomplete
Path

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

Type

boolean

Scope

Display

RenderTypes

default, colorpicker, link

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

'title' => [
   'label' => 'LLL:EXT:lang/locallang_tca.xlf:sys_file_reference.title',
   'config' => [
      'type' => 'input',
      'size' => 20,
      'eval' => 'null',
      'autocomplete' => true
   ]
],