with the old Table class it was possible to render HTML as a tooltip of a cell by setting the description on a label and returning the label as the component for the cell. How to do that in Vaadin 8 with Grid? I tried using setDescriptionGenerator but that is renderer as normal text and not as HTML.
you need to add HTMLRenderer to your column in grid, for instanc
grid.addColumn(item -> VaadinIcons.DOWNLOAD.getHtml(), new HtmlRenderer()).setId(Columns.DOWNLOAD.dtoName)
and then
grid.getColumn(Columns.DOWNLOAD.dtoName).setDescriptionGenerator(row -> "your html code");
Any news on that one? I can only set the ContentMode with “setDescription” for the component itself but I don’t see the possibility with the DescriptionGenerator or am I missing something?