List of usage examples for com.vaadin.v7.ui Table setSizeFull
public void setSizeFull();
From source file:de.symeda.sormas.ui.caze.AbstractTableField.java
License:Open Source License
protected Table createTable() { final Table table = new Table(); table.setEditable(false);// w ww .ja v a 2 s .c om table.setSelectable(false); table.setSizeFull(); createEditColumn(table); return table; }