Example usage for com.vaadin.v7.ui Table setSelectable

List of usage examples for com.vaadin.v7.ui Table setSelectable

Introduction

In this page you can find the example usage for com.vaadin.v7.ui Table setSelectable.

Prototype

public void setSelectable(boolean selectable) 

Source Link

Document

Setter for property selectable.

Usage

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;
}