I need to make some adjustment on a div css. But I can't do this on method onBind() or onReveal() because the html isn't loaded when this two method is called.
So I was wondering some way to automatically call a method right when the modification of my html(When a Presenter is called the html has to modify because new widgets will be add) load.
This is the method that I have to call:
private void hidePopup(){
$(".olLayerGooglePoweredBy, .olLayerGoogleV3, .gmnoprint").
css(CSS.VISIBILITY.with
(com.google.gwt.dom.client.Style.Visibility.HIDDEN));
}