Interface CellHoverHandler
- All Superinterfaces:
 EventHandler
- 
Method Summary
Modifier and TypeMethodDescriptionvoidonCellHover(CellHoverEvent event) Called when the mouse hovers over a cell ifthis.canHoveristrue. 
- 
Method Details
- 
onCellHover
Called when the mouse hovers over a cell ifthis.canHoveristrue. To suppress the hover text from being shown ifshowHoveristrueforthisor the field, cancel theCellHoverEvent. For example:grid.addCellHoverHandler(new CellHoverHandler() { @Override public void onCellHover(CellHoverEvent event) { if (/* some condition for when to suppress the hover */) { event.cancel(); } } });- Parameters:
 event- the event
 
 -