autocomplete

autocomplete
Type
boolean
Path
$GLOBALS['TCA'][$table]['columns'][$field]['config']
Scope
Display

Controls the autocomplete attribute of a given number field. If set to true (default false), adds attribute autocomplete="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
    ]
],
Copied!