Interface HasAutocomplete

All Superinterfaces:
HasElement, Serializable
All Known Implementing Classes:
AbstractNumberField, BigDecimalField, EmailField, IntegerField, NumberField, PasswordField, TextArea, TextField, TextFieldBase

public interface HasAutocomplete extends HasElement
Mixin interface for fields with autocomplete attribute.
  • Field Details

    • AUTOCOMPLETE_ATTRIBUTE

      static final String AUTOCOMPLETE_ATTRIBUTE
      Name of @{code autocomplete} attribute.
      See Also:
  • Method Details

    • setAutocomplete

      default void setAutocomplete(Autocomplete autocomplete)
      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 - the autocomplete value, or null to unset
    • getAutocomplete

      default Autocomplete getAutocomplete()
      Gets the Autocomplete option of the field.
      Returns:
      the autocomplete value, or null if not set