Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

ListGrid: Can't select that many records at once.

$
0
0
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.
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);

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.

Viewing all articles
Browse latest Browse all 4756

Trending Articles