In Vaadin I want to show a Notification after a page reload:
UI.getCurrent().getPage().reload();
new Notification("Success", 5000).open();
But with this attempt no notification is shown.
What is the problem here and how do I fix it?
In Vaadin I want to show a Notification after a page reload:
UI.getCurrent().getPage().reload();
new Notification("Success", 5000).open();
But with this attempt no notification is shown.
What is the problem here and how do I fix it?