Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Open a new browser window from Grid?
Is there any workaround available if a new browser window should be opened by clicking a Grid cell content rendered with a ClickableRenderer (since we can't add a Link into a Grid cell)? BrowserWindowOpener cannot be extended with a Renderer instance either. The opened link should contain value from the selected row.
Apparently you can make your own Renderer with Link inside. :)
But if you do not want to write a renderer for that, you can install a Converter, which converts your cell data into html like
<a href="somelink" target="windowname">SomeText</a>
Then use HtmlRenderer to put the text into cells.