Hi All.
- What need to achieve - make vertical aligment to top in grid cell (not a header or footer).
- How - set class Grid.Colum or set style items.
2.1. Just to usenameColumn.setClassNameGenerator( pa -> "paname");and create style ‘td.paname {
color: red;
vertical-align: top;
display: inline;
}’
2.2. Or add stylesnameColumn.getElement().getStyle().set("vertical-align", "top"); nameColumn.getElement().getStyle().set("display", "inline");the same negative effect for verticalAlign style - The class work perfect for regular html.
- Result is present below as picture.
- Question - how to apply style or class to grid column to get the effect - vertical alignment of grid cell ?

Thanks, Igor