我正在 Vaadin 开发一个应用程序,但我发现了一个问题。我想从添加到 vaadin 表的操作处理程序中打开一个新的浏览器窗口,但我不知道该怎么做。那可能吗?。
table.addActionHandler(new Handler() {
public void handleAction(Action action, Object sender, Object target) {
if (action == ACTION_OPEN_WINDOW) {
// code to open a new browser window
BrowserWindowOpener opener = new BrowserWindowOpener....
/// is it possible open oit here?
}
}
public Action[] getActions(Object target, Object sender) {
return ACTIONS;
}
});