Interface HasCellHoverHandlers
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
CalendarView
,CubeGrid
,DateGrid
,EditTree
,ListGrid
,ListPalette
,Menu
,MenuPalette
,PickListMenu
,RecordEditor
,SelectionTreeMenu
,TableView
,TreeGrid
,TreePalette
-
Method Summary
Modifier and TypeMethodDescriptionaddCellHoverHandler
(CellHoverHandler handler) Called when the mouse hovers over a cell ifthis.canHover
istrue
.Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
Method Details
-
addCellHoverHandler
Called when the mouse hovers over a cell ifthis.canHover
istrue
. To suppress the hover text from being shown ifshowHover
istrue
forthis
or 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:
handler
- the cellHover handler- Returns:
HandlerRegistration
used to remove this handler
-