Questions tagged [scroller]

248 questions
2
votes
1 answer

scroller.scrollTo in Sencha Touch don't work if not launched manually just before

I encounter a problem when i want to use the scrollTo function of the scroller component. When i execute this command (by a button located on an another panel) : myPanel.scroller.scrollTo({x: 0, y: 200}, true); My panel is scrolling only if just…
pushreset
  • 95
  • 1
  • 7
2
votes
1 answer

jquery horizontal scroll

i would like to use the scroller of jquery UI : http://jqueryui.com/demos/slider/#side-scroll but with a mouseover event, i looked everywhere, i think i can do it by binding the event, but i dont really know, i need some help. I found exactly what i…
Pat-rice
  • 422
  • 1
  • 3
  • 16
2
votes
1 answer

How can I make sure the stepper title does't go out of view onTap?

I am implementing a stepper in which the content displays a list of choices. Depending where the step is on the screen the scroller pushes the title out of view and only shows part of the list on tap. This doesn't feel right from a UX point of…
2
votes
1 answer

Detect scroll end in android.widget.Scroller

I would like to detect when a user stops scrolling using android.widget.Scroller based on onTouchEvent checking MotionEvent.ACTION_UP. When the user scrolls once it works fine but when the user scrolls quickly to reach particularly position it shows…
Atalyk
  • 495
  • 1
  • 5
  • 11
2
votes
1 answer

Event when the scroller starts scrolling or ending scrolling in Flex 4.0

are there any events that the scroller will dispatch when being scrolled?
saisri2k2
  • 21
  • 1
  • 2
2
votes
2 answers

Implementing a horizontal date scroller using RecyclerView

This is what I'm trying to get: This is what I'm getting: I'm struggling with implementing the "lift" effect. I've tried using RecyclerView but failed to implement it!
Hemanth Kaipa
  • 42
  • 1
  • 8
2
votes
2 answers

How can I create a scrolling group with a background color?

I'm using Flash Builder 4 Premium. My application has a title bar that I don't want to scroll, and a group underneath that should scroll. Here is the group that I want to be able to scroll:
Travesty3
  • 14,351
  • 6
  • 61
  • 98
2
votes
1 answer

Scroller is not working in javascript

i am running a javascript to scroll down the image when it is zoomed in but the scroller doesn't work here is script $(function(){ // Add a custom filter to recognize images from lorempixel (that don't end with ".jpg" or something…
Mandeep Thakur
  • 655
  • 1
  • 10
  • 23
2
votes
1 answer

CSS 2 columns, first define the max height of the second one, that will use scroll if needed

I would like to have a two columns layout where the first column can grown as high as necessary and the second column will be 100% the height of the first one, but if the first one is not higher enough to show all the content of the second column,…
Manny
  • 69
  • 2
  • 10
2
votes
0 answers

OverScroller fling doesn't always finish animation where it's supposed to

I'm using the code below to implement a vertical fling in a custom view. mViewsHeight is just an offset which helps calculate the maxY in the fling and is a correct calculation. mViewsTop is a variable which helps me keep track of the children…
ethan123
  • 1,084
  • 2
  • 14
  • 26
2
votes
1 answer

Columns don't fit to header - datatables with Scroller plugin

I'm using Datatables with Scroller plugin and server-side loading. When data are loaded, header columns are resized and often (not always) don't fit to inside columns. Picture of a situation (https://i.stack.imgur.com/J3zMz.png): Relevant…
Xdg
  • 1,735
  • 2
  • 27
  • 42
2
votes
2 answers

jQuery UI Slider doesn't work (fiddle is provided)

I've inserted a jQuery UI slider in my website, which works pretty good. Here you can see the slider: FIDDLE When you click on 'back to the top' you see it just scrolls to the top. But when I go with the slider to for example 1918, it just goes…
user3024879
  • 267
  • 5
  • 13
2
votes
3 answers

Flex 4 scroller with group. Scrollbars not showing up

I know I have done this before but every time I work with scrollers and group it doesn't work for me and kills my 2 days.
Tamil
  • 1,173
  • 1
  • 13
  • 35
2
votes
1 answer

java game - slick scroller - player can't move

My scroller is working but I can't move player. Player is centering to middle of window screen. And map is centering to player's position. Window (program) size is 640 x 640 px Map map.tmx is orthogonal (zelda/pokemon style game). Using only UP,…
Ing. Michal Hudak
  • 5,338
  • 11
  • 60
  • 91
2
votes
0 answers

NSScrollview does not honor system preferences for scroll bars (when scrolling), while I override the -tile method

Below is my code that overlays a control on the horizontal scrollbar. - (void)tile { [super tile]; if (subControl) { NSRect subControlFrame = [subControl frame]; NSScroller *horizontalScroller = [self…
1 2
3
16 17