com.vaadin.flow.component.textfield.
Interface HasAutocomplete
All Superinterfaces:
All Known Implementing Classes:
AbstractNumberField
, BigDecimalField
, EmailField
, IntegerField
, NumberField
, PasswordField
, TextArea
, TextField
, TextFieldBase
Mixin interface for fields with autocomplete
attribute.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiondefault Autocomplete
Gets the
Autocomplete
option of the field.default void
setAutocomplete
(Autocomplete autocomplete) Sets the
Autocomplete
attribute for indicating whether the value of this component can be automatically completed by the browser.Methods inherited from interface com.vaadin.flow.component.HasElement
getElement
-
Field Details
-
AUTOCOMPLETE_ATTRIBUTE
Name of @{code autocomplete} attribute.
See Also:
-
-
Method Details
-
setAutocomplete
Sets the
Autocomplete
attribute for indicating whether the value of this component can be automatically completed by the browser.If not set, devices may apply their own defaults.
See autocomplete attribute for more information.
Parameters:
autocomplete
- theautocomplete
value, ornull
to unset -
getAutocomplete
Gets the
Autocomplete
option of the field.Returns:
the
autocomplete
value, ornull
if not set
-