Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    slowing or turning off drag scroll for a ListGrid?

    Is there any way to turn off or slow down drag scrolling in a ListGrid? The default is enabled and scrolling at the speed of sound. When my users see it, they get scared, and drop whatever they're dragging into a random place.

    I found Canvas.setDragScrollDelay() and Canvas.setCanDragScroll(), but neither of them seems to have any effect.

    #2
    Originally posted by dirkg View Post
    Is there any way to turn off or slow down drag scrolling in a ListGrid? The default is enabled and scrolling at the speed of sound. When my users see it, they get scared, and drop whatever they're dragging into a random place.

    I found Canvas.setDragScrollDelay() and Canvas.setCanDragScroll(), but neither of them seems to have any effect.

    Anyone has any idea how to accomplish this?

    I attempted setting

    Code:
    tree.setAnimateScrollAcceleration(AnimationAcceleration.NONE);
    tree.setAnimateAcceleration(AnimationAcceleration.NONE);
    but this didn't seem to slow down the drag scrolling either... at least not visually...

    Comment

    Working...
    X