Uses of Class
com.vaadin.client.widget.grid.CellReference
-
Packages that use CellReference Package Description com.vaadin.client.renderers com.vaadin.client.widget.grid com.vaadin.client.widget.grid.events com.vaadin.client.widget.grid.selection com.vaadin.client.widgets -
-
Uses of CellReference in com.vaadin.client.renderers
Methods in com.vaadin.client.renderers that return CellReference Modifier and Type Method Description CellReference<R>
ClickableRenderer.RendererClickEvent. getCell()
Returns the cell of the clicked button.Methods in com.vaadin.client.renderers with parameters of type CellReference Modifier and Type Method Description boolean
ComplexRenderer. onActivate(CellReference<?> cell)
Called when the cell is activated by pressingenter
, double clicking or performing a double tap on the cell.boolean
ComplexRenderer. onBrowserEvent(CellReference<?> cell, com.google.gwt.dom.client.NativeEvent event)
Called whenever a registered event is triggered in the column the renderer renders. -
Uses of CellReference in com.vaadin.client.widget.grid
Subclasses of CellReference in com.vaadin.client.widget.grid Modifier and Type Class Description class
EventCellReference<T>
A data class which contains information which identifies a cell being the target of an event fromGrid
.class
RendererCellReference
A data class which contains information which identifies a cell being rendered in aGrid
.Methods in com.vaadin.client.widget.grid with parameters of type CellReference Modifier and Type Method Description String
CellStyleGenerator. getStyle(CellReference<T> cellReference)
Called by Grid to generate a style name for a column element. -
Uses of CellReference in com.vaadin.client.widget.grid.events
Constructors in com.vaadin.client.widget.grid.events with parameters of type CellReference Constructor Description GridClickEvent(Grid<?> grid, CellReference<?> targetCell)
Deprecated.This constructor's arguments are no longer used.GridDoubleClickEvent(Grid<?> grid, CellReference<?> targetCell)
Deprecated.This constructor's arguments are no longer used.GridKeyDownEvent(Grid<?> grid, CellReference<?> targetCell)
Deprecated.This constructor's arguments are no longer used.GridKeyPressEvent(Grid<?> grid, CellReference<?> targetCell)
Deprecated.This constructor's arguments are no longer used.GridKeyUpEvent(Grid<?> grid, CellReference<?> targetCell)
Deprecated.This constructor's arguments are no longer used. -
Uses of CellReference in com.vaadin.client.widget.grid.selection
Methods in com.vaadin.client.widget.grid.selection with parameters of type CellReference Modifier and Type Method Description boolean
MultiSelectionRenderer. onBrowserEvent(CellReference<?> cell, com.google.gwt.dom.client.NativeEvent event)
-
Uses of CellReference in com.vaadin.client.widgets
Methods in com.vaadin.client.widgets that return CellReference Modifier and Type Method Description CellReference<T>
Grid. getCellReference(com.google.gwt.dom.client.Element element)
Returns a CellReference for the cell to which the given element belongs to.CellReference<?>
Grid.AbstractGridKeyEvent. getFocusedCell()
Gets the reference of target cell for this event, if this event originated from a Grid.CellReference<?>
Grid.AbstractGridMouseEvent. getTargetCell()
Gets the reference of target cell for this event, if this event originated from a Grid.Constructors in com.vaadin.client.widgets with parameters of type CellReference Constructor Description AbstractGridKeyEvent(Grid<?> grid, CellReference<?> targetCell)
Deprecated.This constructor's arguments are no longer used.AbstractGridMouseEvent(Grid<?> grid, CellReference<?> targetCell)
Deprecated.This constructor's arguments are no longer used.
-