We've had this issue too (in IE6 and IE7). Our solution was to set
the 'overflow' to 'hidden' in the ScrollPanel's CSS:
.designingpatterns-Table-Grid-ScrollPanel {
overflow-x: hidden !important;
overflow-y: auto !important;
}
The '!important' annotation is necessary.
Tony
--
Tony Strauss
Designing Patterns, LLC
http://www.designingpatterns.com
http://blogs.designingpatterns.com
On Mar 25, 12:07 am, r a f t <[email protected]> wrote:
> hello,
>
> i have some content widget, which is placed into a pixel sized
> ScrollPanel. the widget easily fits into ScrollPanel by its width. in
> IE6 when widget's height is more than ScrollPanel, vertical scroll bar
> appears, which in turn (i guess so) triggers horizontal scrollbar to
> create space for vertical scrollbar. when widget is shorter by height
> no scrollbar appears. i tried both setting width of widget to 100% and
> remain it unset.
>
> in firefox it works as expected (no horizontal scrollbar). i didn't
> test it for other IE versions
>
> any ideas how to fix this ? setting width of widget to 90% or some
> pixel width may help (didnt try), but i prefer them as last choices as
> they depend on scrollbar width.
>
> thanks,
> r a f t
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---