Hi,
I'm using GWT 2.4 and having a problem affecting IE 8 only. I want to
layout widgets (some having a minimum width) horizontally in a panel,
and then have those widgets wrap to the next line if there is no more
visible room on the current horizontal line. If the number of lines
exceeds the vertical display area, I would like a scroll bar to
appear. Is there a standard GWT way to do this? Right now, I'm
assigning styles to widgets, for example ...
final FlowPanel panel = new FlowPanel();
for (final Widget childWidget : childWidgets) {
...
childWidget.getElement().getStyle().setProperty("display", "inline-
block");
...
panel.add(childWidget);
but evidently what I'm doing isn't jiving with IE, because those
widgets appear vertically. GWT usually takes care of browser
differences, so I'm wondering what the right way to layout widgets in
GWT is.
Thanks, - Dave
--
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.