public interface HasCellHoverHandlers
extends com.google.gwt.event.shared.HasHandlers | Modifier and Type | Method and Description |
|---|---|
com.google.gwt.event.shared.HandlerRegistration | addCellHoverHandler(CellHoverHandler handler) Called when the mouse hovers over a cell if this.canHover is true. |
com.google.gwt.event.shared.HandlerRegistration addCellHoverHandler(CellHoverHandler handler)
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();
}
}
});handler - the cellHover handlerHandlerRegistration used to remove this handler