Hi,
We’re using SmartGWT 4.0p (November 2013 release) and GWT 2.5. Our goal is to add dynamic tooltip text for ListGrid component.
Browsers: Chrome 34, Firefox 26, 28, IE 9
There are following examples where used from your showcase:
http://www.smartclient.com/smartgwt/showcase/#grid_interaction_header_hover
We tried to add something like that into your code:
countryGrid.addHeaderHoverHandler(new HeaderHoverHandler() {
@Override
public void onHeaderHover(HeaderHoverEvent event) {
SC.say(event.getFieldNum() + "");
}
});
We found that nothing happens on header hover, moreover the gwt:debug showed the same. We put break point on SC.say(event.getFieldNum() + ""); and it’s not reached.
However, the countryGrid.addHeaderClickHandler works as designed.
What we are doing wrong? Any ideas?
Thanks a lot in advance,
Sava
We’re using SmartGWT 4.0p (November 2013 release) and GWT 2.5. Our goal is to add dynamic tooltip text for ListGrid component.
Browsers: Chrome 34, Firefox 26, 28, IE 9
There are following examples where used from your showcase:
http://www.smartclient.com/smartgwt/showcase/#grid_interaction_header_hover
We tried to add something like that into your code:
countryGrid.addHeaderHoverHandler(new HeaderHoverHandler() {
@Override
public void onHeaderHover(HeaderHoverEvent event) {
SC.say(event.getFieldNum() + "");
}
});
We found that nothing happens on header hover, moreover the gwt:debug showed the same. We put break point on SC.say(event.getFieldNum() + ""); and it’s not reached.
However, the countryGrid.addHeaderClickHandler works as designed.
What we are doing wrong? Any ideas?
Thanks a lot in advance,
Sava
Comment