Hi,
I'm adding 4 images in a FlowPanel, it lines up continuously. When I
try adding a space between images by adding a flowpanel.add(new
HTML(" ") the alignment gets changed.
FlowPanel toolBar = new FlowPanel();
toolBar.add(new Image("images/image1.png"));
toolBar.add(new HTML(" "));
toolBar.add(new Image("images/image2.png"));
toolBar.add(new HTML(" "));
toolBar.add(new Image("images/image3.png"));
toolBar.add(new HTML(" "));
toolBar.add(new Image("images/image4.png"));
toolBar.add(new HTML(" "));
toolBar.add(new Image("images/image5.png"));
Is this way correct? or is there any other suggestion ??
Thanks in Advance !
-ArunDhaJ
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---