我为我的Vaadin 7 Grid定义了一个自定义编辑器
longColumn.setEditorField(getTextArea());
其中getTextArea()是:
private Field<?> getTextArea() {
TextArea ta=new TextArea();
ta.setWidth("300px");
ta.setHeight("200px");
return ta;
}
TextArea似乎具有给定的大小,但它被切割到行的高度,并且完全无法使用。
有没有办法让编辑器更大才能使用大的TextArea?
答案 0 :(得分:1)
通过使用setRowStyleGenerator()向网格添加新样式,通过CSS添加自定义高度。