-
Notifications
You must be signed in to change notification settings - Fork 7
ComboBox
appreciated edited this page Aug 5, 2017
·
7 revisions
You can choose from a the following ComboBox styles
Create the ComboBox as follows
ComboBox<String> combobox = new ComboBox<>("Click Me!");
// Take one of the constants from below
combobox.addStyleNames(JAVA_CONSTANT1, JAVA_CONSTANT2);
// Now you can add the Button to your View
ComboBox<String> combobox = new ComboBox<>("Click Me!");
// Take one of the constants from below
combobox.addStyleNames(JAVA_CONSTANT1, JAVA_CONSTANT2);
// Now you can add the Button to your View
public static final String = "custom";
public static final String COMBOBOX_FLOATING = "floating";
Description | Java Constant | Stylename |
---|---|---|
Default | - | - |
Borderless | COMBOBOX_BORDERLESS | "borderless" |
Round | COMBOBOX_CUSTOM | "custom" |
Floating Action | COMBOBOX_FLOATING | "floating" |