hi,
    i am add multiple image in a flowpanel. It list the image
horizonallay line by line properly. But if i add a image in a
SimplePanel and simplePanel added in a FlowPanel, its listing them in
vertically. How can i list them horizontally.

public void onModuleLoad() {
FlowPanel fp = new FlowPanel();
for(int i=0;i<list.size();i++ {
Image img = new image(list.get(i).geturl());
SimplePanel sp = new SimplePanel();
sp.add(img);
fp.add(img);
}

RootPanel.get().add(fp);

}

how can i list them in horizontally.

-- 
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.

Reply via email to