public interface CellHoverHandler
extends com.google.gwt.event.shared.EventHandler
Modifier and Type | Method and Description |
---|---|
void |
onCellHover(CellHoverEvent event)
Called when the mouse hovers over a cell if
this.canHover is true . |
void onCellHover(CellHoverEvent event)
this.canHover
is true
.
To suppress the hover text from being shown if showHover
is true
for this
or the field, cancel the
CellHoverEvent
. For example:
grid.addCellHoverHandler(new CellHoverHandler() { @Override public void onCellHover(CellHoverEvent event) { if (/* some condition for when to suppress the hover */) { event.cancel(); } } });
event
- the event