GWT setSkipRowHoverCheck on abstract cell table

I set the skipRowHoverCheck flag to true in AbstractCellTable through the installer. By setting the debugging point of the onBrowseEvent2 method inside AbstractCellTable, I can confirm that the flag is set to true.

The code never executes a block in which the skipRowHoverCheck value is checked in order to be true, so no MouseOver view events are added.

However, when debugging a project, mice over events are still captured, and hover events at the row level are selected. This makes the lines that the mouse hovers over the selected line, which we do not want.

Any advice on this would be great!

thank

+5
source share
1 answer

skipRowHoverCheck , DOM RowHoverEvent ( addRowHoverHandler(RowHoverEvent.Handler handler)).

, BrowserEvents.MOUSEOVER BrowserEvents.MOUSEOUT. , ( no-op, setSkipRowHoverCheck(true)) , , .

, , , skipRowHoverCheck .

+2

All Articles