com.vaadin.flow.component.shared.
Interface HasClearButton
-
All Superinterfaces:
All Known Implementing Classes:
AbstractNumberField
,BigDecimalField
,ComboBox
,DatePicker
,EmailField
,IntegerField
,NumberField
,PasswordField
,TextArea
,TextField
,TimePicker
public interface HasClearButton extends HasElement
Mixin interface for components that support a clear button.
Used to toggle the visibility of the clear button.
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description default boolean
isClearButtonVisible()
Gets the visibility of the button which clears the field, which is
false
by default.default void
setClearButtonVisible​(boolean clearButtonVisible)
Sets the visibility of the button which clears the field.
-
Methods inherited from interface com.vaadin.flow.component.HasElement
getElement
-
-
-
-
Method Detail
-
isClearButtonVisible
default boolean isClearButtonVisible()
Gets the visibility of the button which clears the field, which is
false
by default.Returns:
true
if the button is visible,false
otherwise
-
setClearButtonVisible
default void setClearButtonVisible​(boolean clearButtonVisible)
Sets the visibility of the button which clears the field.
Parameters:
clearButtonVisible
-true
to show the clear button,false
to hide it
-
-