Hello,

I have the DialogBox written below. In my EntryPoint I call

      final LoginWidget l = new LoginWidget(new AuthWidget());
       l.show();

AuthWidget is just a VerticalPanel with the TextBoxes and the labels
plus the Login Button , listeners and so on ...
Everything works fine but the DialogBox doesnt pop up. I just a part
of the page (with an horizontal and vertical tool bars in firefox).
I wonder why it's not poping up. Any idea????


public class LoginWidget extends DialogBox {

    public LoginWidget(AuthWidget data)

        this.setAnimationEnabled(true);
        this.setWidget(data);

    }

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to