Interface HasAutocapitalize
- All Superinterfaces:
com.vaadin.flow.component.HasElement,Serializable
- All Known Implementing Classes:
AbstractNumberField,BigDecimalField,EmailField,IntegerField,NumberField,PasswordField,TextArea,TextField,TextFieldBase
public interface HasAutocapitalize
extends com.vaadin.flow.component.HasElement
Mixin interface for fields with
autocapitalize attribute.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiondefault AutocapitalizeGets theAutocapitalizefor indicating whether the value of this component can be automatically completed by the browser.default voidsetAutocapitalize(Autocapitalize autocapitalize) Sets theAutocapitalizeattribute 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
-
AUTOCAPITALIZE_ATTRIBUTE
Name of @{code autocapitalize} attribute.- See Also:
-
-
Method Details
-
setAutocapitalize
Sets theAutocapitalizeattribute for indicating whether the value of this component can be automatically completed by the browser.If not set, devices may apply their own default.
- Parameters:
autocapitalize- theautocapitalizevalue, ornullto unset
-
getAutocapitalize
Gets theAutocapitalizefor indicating whether the value of this component can be automatically completed by the browser.- Returns:
- the
autocapitalizevalue, ornullif not set
-