Search code examples
vaadinvaadin7

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.


Solution

  • 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.