I know there is a way like this
listBox.addThemeVariants(CheckboxGroupVariant.LUMO_HELPER_ABOVE_FIELD);
But ComboBox does not have addThemeVariants. So How we can set the helper text above the field.
I know there is a way like this
listBox.addThemeVariants(CheckboxGroupVariant.LUMO_HELPER_ABOVE_FIELD);
But ComboBox does not have addThemeVariants. So How we can set the helper text above the field.
Like this:
ComboBox<String> combo = new ComboBox<>();
combo.setItems("foo", "bar");
combo.setHelperText("Oh no");
combo.getElement().getThemeList().add(CheckboxGroupVariant.LUMO_HELPER_ABOVE_FIELD.getVariantName());