我正在尝试编写显示按钮的代码,单击该按钮会将我重定向到Vaadin中的表单。你能帮帮忙吗?这是我的form1代码。我的目标是当按下subscribeBtn时,我将被重定向到form2。
public class AchrefliferayApplication extends Application {
@Autowired
ArticleService articleService;
public void init() {
Article article;
Window w = new Window("Subscribe Newsletter");
setMainWindow(w);
w.setContent(new VerticalLayout());
Button subscribeBtn = new Button("saisi");
w.addComponent(subscribeBtn);
}
}
答案 0 :(得分:0)
将ClickListener添加到按钮。在处理程序中,创建一个包含Form2对象(setContent)的新窗口,并在Window上使用setModal。