I need to do some tuning on a css div. But I cannot do this using the onBind () or onReveal () method, because html does not load when this two methods are called.
So, I was wondering how you can automatically call a method when modifying my html (When the caller is called html, you need to change as new widgets will be added).
This is the method I should call:
private void hidePopup(){
$(".olLayerGooglePoweredBy, .olLayerGoogleV3, .gmnoprint").
css(CSS.VISIBILITY.with
(com.google.gwt.dom.client.Style.Visibility.HIDDEN));
}
source
share