I would like to put in my own graphics instead of the OS dependent boring scrollbars for the website I'm building. Is there a way to do this in GWT?
A:
I agree with Slaks. Best bet is to use the Jquery plugin JScrollpane.
http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html
adamwstl
2010-04-22 04:54:34
Is it possible to incorporate jquery in gwt?
Kasturi
2010-04-22 12:44:02
Yeah, Jquery works on all browsers if that's what you mean.
adamwstl
2010-04-22 19:20:39
A:
The best solution i found is to create my own scroll panel. The scroll bar is wrapped around a Focus panel. I've added Mousedown, mousemove and mouseout handlers to the focus panel. Recording the mouse movements and moving the contents accordingly.
Kasturi
2010-04-23 16:17:56