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

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

Introduction

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

Prototype

public void setEditable(boolean editable) 

Source Link

Document

Sets the editable property.

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);
    table.setSelectable(false);//from   ww w. j  a  v a 2 s  . c  o  m
    table.setSizeFull();

    createEditColumn(table);

    return table;
}