List of usage examples for com.vaadin.v7.ui Table setSelectable
public void setSelectable(boolean selectable)
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 .j a v a 2 s .c om table.setSelectable(false); table.setSizeFull(); createEditColumn(table); return table; }