Hi All,
I am trying to add 2 disclosure panels to main panel (vertical panel)
but the promblem is that I am gettign a space in between disclosure
panels even after I set the width properly. Here is the sample code
SimplePanel simPanel = new SimplePanel();
simPanel.setHeight("400px");
simPanel.setWidth("1000px");
DisclosurePanel disPanel1 = new DisclosurePanel("Requests");
disPanel1.setContent(simPanel);
DisclosurePanel disPanel2 = new DisclosurePanel("Inbox");
disPanel2.setContent(simPanel);
VerticalPanel vPanel = new VerticalPanel();
vPanel.add(disPanel1 );
vPanel.add(disPanel2);
vPanel.setSpacing(0);
I have added the above vertical panel in my DockPanel center. when I
open the disclosure panels then the space is getting adjusted but
whenever I close the panels I am seeing some space in between the
panels.
Is there anyway I can Place these panels together even in the close
position.
I appreciate your help.
Thanks,
Satish
--
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.