List of usage examples for com.vaadin.client.widget.grid CellReference getValue
public Object getValue()
From source file:com.haulmont.cuba.web.toolkit.ui.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.toolkit.ui.client.renderers.componentrenderer.componentcellkey.EnterKeyDownHandler.java
License:Apache License
private boolean isCellContainingComponent(CellReference cell) { return cell.getValue() instanceof AbstractComponentConnector; }