I had a piece of really hacky code to turn off the warning to work with my select all implementation that worked with the 4.0p 05/25/2014 build.
Which no longer works with the 6/18 build. It seems like the setShowHover(false) is not being honored. Any suggestions?
SGWT:4.0p 06/18/2014 17:53
FF:26.
Code:
Layout header = ListGrid.this.getHeader();
if(header != null){
final Button button = (Button) header.getChildren()[0];
if(button.getHandlerCount(ClickEvent.getType()) == 0) {
button.addClickHandler(selectAllHandler);
}
button.setDisabled(false);
button.setShowHover(false);SGWT:4.0p 06/18/2014 17:53
FF:26.