Search code examples
vaadinvaadin7

Vaadin: How do I get rid of the grey "Upload" box to the right of the "browse" box?


Upload upload = new Upload("My File");
addComponent(upload);

enter image description here

I want that gone because I have a nice one on the line below. Thanks community!


Solution

  • The following does the trick:

    upload.setButtonCaption(null);