Reputation:
Vaadin 7.6.2
How-to disable or deactivate a Vaadin ComboBox picker icon? I want the field to look like a TextField without the picker arrow on the far right.
Upvotes: 1
Views: 665
Reputation: 801
Here is the code for hiding button:
ComboBox c1 = new ComboBox();
c1.setStyleName("no-picker");
.v-filterselect-no-picker .v-filterselect-button {
display: none;
}
There is no Vaadin core style for this.
Upvotes: 0