Hi every body,

                     I am using one popup and one composite and one
entrypoint class.I use to set the popup for first login.When ever i
successfully login. the composite page need to be displayed.but it
show directly.composite page. could u please help me. my code in entry
point is below.

popup : Login
Composite : welcome
entrypoint  : home

public void onModuleLoad() {
                RootPanel rootPanel = RootPanel.get();

                AbsolutePanel absolutePanel = new AbsolutePanel();
                rootPanel.add(absolutePanel, 0, 0);
                absolutePanel.setSize("450px", "300px");

                login.show();
                absolutePanel.add(login);

                login.hide();
                Welcome w=new Welcome();
                w.onModuleLoad();
                absolutePanel.add(w);
}




in Login when ever we click it call onModul of home.



could u please let me know. i need it very urgent.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to