autocomplete¶
-
autocomplete
¶ -
- Type
- boolean
- Path
- $GLOBALS['TCA'][$table]['columns'][$field]['config']
- Scope
- Display
- RenderTypes
- default, colorpicker, link
Controls the
autocomplete
attribute of a given input field. If set to true (default false), adds attributeautocomplete="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 ] ],
Copied!