In vaadin 24, to make a button clickable to download file or other resources, just wrap the Button component into an Anchor component.
There is no need to use an extension or external pluggin !!
Anchor a = new Anchor();
Button btn = new Button();
a.add(btn);
And that's all, pretty easy.
Top comments (1)
The essence of the KISS-principle demonstrated in three lines of code. Luv it :-)