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.

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