Thanks alot Patrizio De Michele. that really helped.
this was what i did.
[code] Frame website = new Frame("http://www.google.com.sg/");
website.setWidth("100%");
website.setHeight("450px");
final Window window = new Window();
window.setTitle("Window Panel");
window.setIconCls("paste-icon");
window.setMaximizable(true);
window.setResizable(true);
window.setLayout(new FitLayout());
window.setWidth(450);
window.setModal(false);
window.add(website);
link.addClickListener(new ClickListener() {
public void onClick(Widget sender) {
window.show();
}
});
[/code]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"GWT-Ext Developer Forum" 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/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---