Friday, August 17, 2018

2.8.2 SDM recompile button strange behaviour

On GWT 2.8.2 SDM I've faced with very stange (for me) bahaviour of module's recompile button.

It's not working when module have only PopupPanel active on page.
Is it normal or bug?

Module's example:

public class Test2 implements EntryPoint {
    public void onModuleLoad() {
        RootLayoutPanel.get().clear();
        PopupPanel pp = new PopupPanel(false,false);
        pp.setWidget(new LoginView());
        pp.center();
    }
}

The recompile buttons appears, then I press "Dev Mode On" booklet but pressing "recompile buttons" does nothing (dialog with recompile is not dissapering)!!!

With other module's code recompile button does its work fine:

public class Test2 implements EntryPoint {
    public void onModuleLoad() {
        RootLayoutPanel.get().clear();
        RootLayoutPanel.get().add(new LoginView());
    }
}

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment