user1068477
user1068477

Reputation:

Vaadin ComboBox Possible to Remove or Disable "Picker" Icon?

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

Answers (1)

Dragan Radevic
Dragan Radevic

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

Related Questions