Vaadin 24 download file via button click
Al-Karid

Al-Karid @alkarid

About: Dev is a passion

Joined:
Jun 15, 2024

Vaadin 24 download file via button click

Publish Date: Jul 5 '24
3 1

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);
Enter fullscreen mode Exit fullscreen mode

And that's all, pretty easy.

Comments 1 total

  • jon martin solaas
    jon martin solaasOct 1, 2024

    The essence of the KISS-principle demonstrated in three lines of code. Luv it :-)

Add comment