Design of the Scrollbars

Hi,

Is there any way to change the design of the scrollbars (table grid). At the moment, it’s using the design from the operating system. (native one)
Thanks

Regards

Fred

This is a pure css-question, and I think one should avoid styling the scrollbars, since this is not supported in many browsers.

We do not provide any other scrolling controls than the native ones. And the only way to change the appearance is by using CSS. And the only browsers/rendering engines that support scrollbar styling are Internet Explorer (since version, what, 5?) and WebKit (since last March).

If you definitely need custom styled scrollbars, you need to build your own component for that, unfortunately. Existing solutions (built with GWT, jQuery or such) can be imported quite easily.

Here’s one solution I found with Google:
http://www.hesido.com/web.php?page=customscrollbar

Thanks