Vaadin Grid wrap labels in componentColumns
Clash Royale CLAN TAG #URR8PPP Vaadin Grid wrap labels in componentColumns I'm currently working on a webapp project in Vaadin 10 . On the main page there's an overview of your current chats. Each chat is displayed as a bubble looking like: Vaadin 10 It contains an image and a label. I placed the bubbles in a Grid to ensure fast loading and flexibility like this: `Grid<VisualGroup> cloudGrid = new Grid<VisualGroup>(); cloudGrid.setWidth("100%"); cloudGrid.setHeight("100%"); cloudGrid.getElement().getStyle().set("border","white"); cloudGrid.addComponentColumn(VisualGroupComponent::new); cloudGrid.setItems(groups);` My problem is that the label does not wrap when I put the components in the grid. If I create the component independently the text wraps correctly like: But if I use the grid like described above it looks: Does anyone know how to get text wrapping working in ComponentColumns in vaadin? EDIT: I finally got it working...