i created one portlet inclucing maximize and minimize tools.........
in that portlet i put one frame in which i give google
link ..............
but the problem is when i maximize that portlet size of frame remain
same it is not maximized.....
can somebody guide me about this matter...........
VLayout layout = new VLayout();
layout.setSize("450px", "550px");
Portlet portlet = new Portlet();
portlet.setSize("450px", "550px");
portlet.setTitle("Google");
Frame frame = new Frame("http://www.google.com");
portlet.addItem(frame);
frame.setSize("437px", "336px");
layout.addMember(portlet);
rootPanel.add(layout, 10, 52);
this is my code ...
plz guide me
--
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.