Bala Murugan
Bala Murugan

Reputation: 11

PopUpPanel in GWT

I need to display a popup panel in GWT for login purpose on page load. I'm using MVP architecture, So the popup panel is in view class. How to load the popup panel?

Upvotes: 0

Views: 398

Answers (1)

mram888
mram888

Reputation: 5139

It isn't very clear what you're asking but I think you're looking for this:

   DialogBox db=new DialogBox();
   //I suppose you have created a panel login class
   LoginPanel lp;
   //Insert your login panel in the dialogbox
   db.add(lp);
   //Finally show the popup
   db.show();

Upvotes: 2

Related Questions