Example usage for com.vaadin.v7.client.widget.grid CellReference getValue

List of usage examples for com.vaadin.v7.client.widget.grid CellReference getValue

Introduction

In this page you can find the example usage for com.vaadin.v7.client.widget.grid CellReference getValue.

Prototype

public Object getValue() 

Source Link

Document

Gets the value of the cell.

Usage

From source file:com.haulmont.cuba.web.widgets.client.renderers.componentrenderer.componentcellkey.EnterKeyDownHandler.java

License:Apache License

private Element extractComponentElement(CellReference cell) {
    return ((AbstractComponentConnector) cell.getValue()).getWidget().getElement();
}

From source file:com.haulmont.cuba.web.widgets.client.renderers.componentrenderer.componentcellkey.EnterKeyDownHandler.java

License:Apache License

private boolean isCellContainingComponent(CellReference cell) {
    return cell.getValue() instanceof AbstractComponentConnector;
}