autocomplete¶
- autocomplete ('type' => 'number')¶
- Path
$GLOBALS['TCA'][$table]['columns'][$field]['config']
- Type
boolean
- Scope
Display
Controls the
autocomplete
attribute of a given number field. If set to true (default false), adds attributeautocomplete="on"
to the number input field allowing browser auto filling the field:'integer_field' => [ 'label' => 'Integer field', 'config' => [ 'type' => 'number', 'size' => 20, 'nullable' => true, 'autocomplete' => true ] ],