My code is here:
final Button paBtn = new Button("PA");
final Button pbBtn= new Button("PB");
final PopupPanel pa = new PopupPanel(false);
final PopupPanel pb = new PopupPanel(false);
paBtn.addClickListener(new ClickListener() {
public void onClick(Widget sender) {
pb.hide();
pa.setPopupPosition(100, 200);
pa.show();
}
});
pbBtn.addClickListener(new ClickListener() {
public void onClick(Widget sender) {
pa.hide();
pb.setPopupPosition(300, 400);
pb.show();
}
});
But the result is not what I expected, so could you give me some hits?
what's wrong?