Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] FW: scrollbars in browser

On 7/5/06, Adam Morgan <adam.morgan@xxxxxxxxxx> wrote:

I can't for the life of me get rid of the scrollbars in the Browser class…
it is as if they are part of a child widget to the Browser, but since I
can't intercept where the widget is instantiated, I can't set the style for
the widget…

You can change DOM properties after widget instantiation, using
Browser.execute("getElementsByTagName('body')[0].style.overflow='auto'");

Hope it helps.


Back to the top