Vaadin Grid text editor not showing up completely

I defined my own editor for my Vaadin 7 grid

longColumn.setEditorField(getTextArea()); 

where getTextArea ():

 private Field<?> getTextArea() { TextArea ta=new TextArea(); ta.setWidth("300px"); ta.setHeight("200px"); return ta; } 

TextArea has a specified size, but it is cut to the height of the line and is completely unsuitable.

enter image description here

Is there a way to make the editor bigger to use TextArea, which is big?

+5
source share
1 answer

Add custom height via CSS by adding a new style using setRowStyleGenerator () in the Grid.

0
source

All Articles