[ 4 posts ]

Sylvain Prat

  • Username: sprat
  • Joined: Thu Apr 07, 2011 12:45 am
  • Posts: 4
  • Offline
  • Profile

Strange behavior of ScrollView

Post Posted: Tue Aug 30, 2011 8:28 am
+0-
I'm a YUI 3 beginner, I used to use YUI 2 a lot.

I'm trying to set up a ScrollView in my mobile application. However, I encounter a strange behavior with the ScrollView, but I'm not sure if it should be considered as a bug.

In my application, I want a scrollview to fill the remaining space of the screen. In order to implement this functionality, whenever the browser window is resized, I update the height of the scrollview to the appropriate value using the windowresize event. However, when the screen is resized big enough so that no scrollbars are necessary anymore, the content keep being "scrolled" (but is not scrollable anymore), and consequently, there's no way to view the hidden content.

So:
1. is this a bug?
2. how can I workaround this issue?

FWIW, I use YUI 3.4.0, here is the code:
http://pastie.org/2455149

Sylvain Prat

  • Username: sprat
  • Joined: Thu Apr 07, 2011 12:45 am
  • Posts: 4
  • Offline
  • Profile

Re: Strange behavior of ScrollView

Post Posted: Tue Sep 06, 2011 11:03 pm
+0-
Anyone?

Sylvain Prat

  • Username: sprat
  • Joined: Thu Apr 07, 2011 12:45 am
  • Posts: 4
  • Offline
  • Profile
Tags:

Re: Strange behavior of ScrollView

Post Posted: Thu Sep 15, 2011 7:52 am
+0-
I finally found out a way to avoid this bad behavior by clamping the scroll position when the scrollview is resized:

Code:
       
// fix the scroll position       
var scrollY = scrollview.get('scrollY'),
     maxScrollY = scrollview._maxScrollY || 0;
if (scrollY > maxScrollY) {
     scrollview.set('scrollY', maxScrollY);
}

Sylvain Prat

  • Username: sprat
  • Joined: Thu Apr 07, 2011 12:45 am
  • Posts: 4
  • Offline
  • Profile

Re: Strange behavior of ScrollView

Post Posted: Fri Sep 23, 2011 12:05 am
+0-
For those interested, here is the relevant issue in the bug tracker:
http://yuilibrary.com/projects/yui3/ticket/2531135
  [ 4 posts ]
Display posts from previous:  Sort by  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum