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 attributeautocomplete="on"
to the email input field allowing browser auto filling the field:'email' => [ 'label' => 'email', 'config' => [ 'type' => 'email', 'size' => 20, 'nullable' => true, 'autocomplete' => true ] ],