Custom Scrollbar in GWT

前端 未结 3 933
抹茶落季
抹茶落季 2020-12-11 08:47

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?

相关标签:
3条回答
  • 2020-12-11 08:57

    I agree with Slaks. Best bet is to use the Jquery plugin JScrollpane.

    http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html

    0 讨论(0)
  • 2020-12-11 09:04

    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.

    0 讨论(0)
  • 2020-12-11 09:10

    I have posted my answer in fallowing link GWT CustomScrollPanel example. But this won't work for IE just like gmail.

    0 讨论(0)
提交回复
热议问题