Scrolling refers to the continuous sliding of content across a display screen.
3
votes
0answers
125 views
Give task priority android
I have an android application where i have some scrolling text ticker that is implemented via javascript and loaded in a web view. It is working fine but whenever the processor is busy, (like i have ...
3
votes
0answers
127 views
ExpandableListView doesn't scroll if at the bottom
I have an Android app with an Activity, with an ExpanableListView inside it.
What I want is for the ExpandableListView to scroll the chosen group's header, when I tap on it, and if it can't (because ...
3
votes
0answers
287 views
Programmatically scrolling NSTextView without scrollbar
I'm trying to scroll a textview programmatically using the scrollToPoint method. This works fine if the textview has a scrollbar, but if I disable it with setHasVerticalScroller:NO, I get some strange ...
2
votes
0answers
21 views
Please refine: Follow scroll but sticky on top
i have accomplished what i was trying to do: make an element follow the mousescroll. If you'd scroll down fast the element would get out of sight for a while and then follow the scroll back to its ...
2
votes
0answers
81 views
jQuery Plugin Scrollorama wrong timing
I made a small example using jQuery Plugin scrollorama:
http://jsfiddle.net/DcSjB/
this is where i call scrollorama:
(function($){
$(document).ready(function() {
var scrollorama = ...
2
votes
0answers
91 views
disable URL bar appearing on scroll up in mobile Chrome
I am implementing a mobile website, which has menu link and contact phone at the top of the page with CSS position:fixed.
Unfortunatelly, Chrome on iPhone has a behavior that when I scroll up, the ...
2
votes
0answers
746 views
jQuery horizontal scroll div with drag
I use jquery dragdealer (http://code.ovidiu.ch/dragdealer/) to scroll horizontally a div container.
It works great, however it's not smooth on touch device and a little buggy on pc.
To scroll ...
2
votes
0answers
139 views
jQuery.ScrollTo onAfter settings isn't working correctly
I'm using the jQuery.ScrollTo script to be able to vertically scroll to the selected image ( if the container class "presentation" isn't here) or to the next picture and display it in the middle of ...
2
votes
0answers
31 views
What is default autoscrolling interval and step?
I'm writing custom tree control from scratch and I've yet implemented most of default behaviors of Windows control. My last change involved adding so called autoscroll feature: if you start making a ...
2
votes
0answers
203 views
Iscroll4 , menu in #scroller can't scroll?
I have a menu in the #scroller inside the #wrapper , it should able to scroll/move the #scroller div by using jquery+css transform:translate,and css transition.
After I installed iscroll4 plugin, ...
2
votes
0answers
144 views
Android - List of labels in a fragment, wrong display when scrolling
So here's my problem.
I'm working on API 14, I made a "MasterDetailFlow" with the help of Eclipse.
On the left part of the "twopane", I have some textviews, and a fragment.
(I made it simple)
...
2
votes
0answers
254 views
Scrolling (using Touch Pad) not working in C# Metro Style App but It works if I choose JavaScript as language
I am trying to create Windows 8 Metro App First Time.
I have worked on all three (C#, VB and JavaScript) languages.
I first created Grid App template (JavaScript Language). Everything looks fine. ...
2
votes
0answers
142 views
How to distinguish swipe down from scroll down
The device makes mistakes with down swipe(fling) and scrolling down on a listview.
Has anyone run into this problem?
Thanks.
2
votes
0answers
238 views
Fixed part in custom painted usercontrol with autoscroll c# windows forms
I would like to create a table like control where a number of top rows stay in place when scrolling.
I paint the control in an override of the OnPaint method.
When scrolling some partial repaint ...
2
votes
0answers
113 views
How to run a function once in $ (window).scroll()?
I'm trying to make a page that launches different animation depending on the scroll.
The principle is simple, when I'm in a block with a data-attribute concerning the type of animation. I run this ...
2
votes
0answers
140 views
pinchable grid zoom in android
I am been googleing this and there really is a distinct absence of physical information regarding this task...
I want to make a grid view in android that uses "tiles" that sorts itself and allows ...
2
votes
0answers
647 views
Sticky Headers with -webkit-overflow-scrolling CSS
Using a modified jQuery plugin we have developed a sticky headers scrolling box to imitate the native functionality on iOS in native apps with a cross browser solution that will work on all computers.
...
2
votes
0answers
279 views
Android overflow-y: auto scrolling problems
We are developing a android app and we have some probems with overflow-y: scroll. Because we have a sticky-footer bar we need this functionality for our content area.
When we enable overflow-y: ...
2
votes
0answers
177 views
Stumped. Scroll to Anchor works on desktop, but not on iPhone
OK. I have a fixed position header that contains a nav with three absolute positioned li a elements displayed inline. The tags are meant to fire the following script and scroll to the appropriate ...
2
votes
0answers
381 views
ViewTreeObserver does not call onScrollChanged after adding OnScrollChangedListener
I have a layout with a webview and a button. The button is visible but becomes visible once the webview is scrolled. I'm using ViewTreeObserver, but for some reason, onScrollChanged is not called. Am ...
2
votes
0answers
147 views
Discrete scrolling in listview android
I need to make some kind of slot machine on android, so I have three endless circular listviews with pictures. Question is how to keep items in row every time after user`s scroll? I tried to implement ...
2
votes
0answers
196 views
Android listview scroll by pixels with no delay
I have a listview that I am implementing pinch zooming on. I resize each child view of the listview which changes the row height. When these rows are resized, the top item of the list view remains ...
2
votes
0answers
601 views
disabled textarea can not scroll in IE8
i was fixing bug about the problem mentioned above, code likes
<textarea style="width: 85%; overflow-y: scroll;" rows="2" name="blog[comment]" id="blog_comment" disabled="disabled" ...
2
votes
0answers
196 views
how to stop uitextview jumping into last line after insert text programmatically
i really need some suggestion, i need to stop an uitextview jumping into last line after inserting some text programmatically, i have read some identical question in here, here, here,and here. i've ...
2
votes
0answers
371 views
Positioning content in webview using javascript function in android
I have a problem with some things related to javascript and webview in android. I need to set on top some text that I have in a webView. I fill the webview with an epub. Each part of text to set on ...
2
votes
0answers
153 views
How to make sure URL bar is not hidden when scrolling to top in mobile safari
In a smallscreen stylesheet, I would like to scroll to the top of the page with jQuery (not jQuery mobile).
// scroll to top
$('html, body').animate({scrollTop:0}, 'fast');
Now this works, but it ...
2
votes
0answers
370 views
jQuery.focus() making an unnecessary scroll
This is my problem.
I'm creating a dialog box (jQuery.dialog) and inside it there is this grid (https://github.com/mleibman/SlickGrid).
After loading data, I need to give the focus to the grid so ...
2
votes
0answers
363 views
Why is smoothScrollToPosition not registering as onScrollStateChanged event
I register a OnScrollListener to a ListView. When programmatically executing smoothScrollToPosition onScrollStateChanged method of the listener is never executed. Why? Is there a way to tell when ...
2
votes
0answers
2k views
Scroll event on touchmove with jquery
I am currently working on something that uses $(window).bind('scroll' but the problem I am having is that on iPad and other touch devices the scroll event is only fired when the users stops moving and ...
2
votes
0answers
247 views
The exception of excess scrolling listview in samsung galaxy
Since the listview in samsung galaxy tab can respond to excess scroll event, and due to some of my special operation (delete the backend datasource for the listview), so that when the galaxy handle ...
2
votes
0answers
217 views
Generating Mouse Scroll Event in Linux
I having small doubt in generating mouse event from C program. I am
writing a program to generate mouse events from a C program in linux. I
have implemented mouse click,drag. .. etc using xlib. But ...
2
votes
0answers
510 views
Detect scroll speed gallery
I am making an app with gallery view and I have this problem. I have implemented resizing the image, to be bigger when it is centred when selected or the user stopped scrolling. But I want to do this: ...
2
votes
0answers
419 views
jquery - adding easing to a scrollbar plugin
I'm using this scrollbar plugin:
http://www.baijs.nl/tinyscrollbar/js/jquery.tinyscrollbar.js
and I want to add easing to it. I've isolated what I think is the function that calculates the movement, ...
2
votes
0answers
192 views
WinForms Touchpad Scrolling
I'm working on a winforms application meant for touchpads and would like the user to be able to scroll through the contents by swiping their finger across the screen. I see that windows (at least ...
2
votes
0answers
588 views
GWT OnScroll Event does not fire
I have a small app that wraps a textarea inside a scroll panel
when I instantiate the scrollpanel and attach a scrolleventhandler WITHIN OnModuleLoad() - the OnScroll event fires properly
however, ...
2
votes
0answers
704 views
Chrome resets the textarea scroll bar (scrollTop) when focus is called
Chrome (7.0.517.41 beta) (sometimes?) resets a textarea's scroll bar (scrollTop) when you call focus. Does anyone know if this behavior is deliberate, a known bug, or neither?
It seems quite ...
2
votes
0answers
665 views
Android: Control ListView Scroll Animation Interval?
Is it possible to set up a ListView so when it scrolls it only scrolls in intervals related to the height of the List Item. In other words if my item height is a number h and a swipe of the list is ...
1
vote
0answers
16 views
How to prevent page scrolling with tinymce
I have a tinyMCE editor with the editing toolbar set to being external. The positioning for this is "fixed". The problem is that every time a user clicks on anything in the toolbar (while changing ...
1
vote
0answers
10 views
Trying to get slider to work, "appendTo' not working
Trying to fix a widget on my website which displays some RSS feed. Got the scrolling but can't figure out how to restart the scrolling.
I have tried The 'appendTo' but without any succes. I can't ...
1
vote
0answers
25 views
Android scroll position requires screen touch to update (jsfiddle included)
I have a simple div with the overflow set to auto, and a label that shows the scrollLeft() position of the div. it works on IOS, the number moves up and down as your scroll. On Android (tablet) though ...
1
vote
0answers
14 views
(webkit) Can't scroll the page when the mouse is in a scroll area
I have an important problem on webkit based browser in a scroll area.
I have a div with horizontal scroll. This div has a width: 100% with overflow: auto. I can scroll with the horizontal scrollbar ...
1
vote
0answers
55 views
Smooth Scrolling of horizontal div html with touch device
Trying to get a div that has a fixed height and overflow scroll to have smooth scrolling on touch devices when the user is scrolling.
I see that there are a lot of solutions out there that are used ...
1
vote
0answers
24 views
Header Bar in Telerik Grid doesn't scroll along with body when the horizontal scroll bar is moved
Basically, I have two Telerik Grids. Now, I have a checkbox to synchronize the horizontal scroll bar in both the grids and want to disable the synchronization when the checkbox is unchecked. Now, the ...
1
vote
0answers
37 views
Scrolling and dragging in Corona --> BUG?
I have a event listener assigned to an object. This then triggers the startDrag function. I'm moving my character in the game with dragging. But as soon as I scroll or move the display, my dragging ...
1
vote
0answers
92 views
Change ul style on scroll to div
I have menu with four <ul>s and in the container of the page I have four boxes.
The first ul for the first box, second ul for the second box, third ul.... and it goes on
When I scroll to the ...
1
vote
0answers
137 views
Jquery Mobile scrolling content height issue
back to coding after a while I am coding a mobile site for my employer using html5 and jquery mobile
Content uses a menu containing two headings:
1-Services (contains several li elements)
2-Products ...
1
vote
0answers
59 views
Sticky header under fullscreen div
I have a question about a sticky header. On my website I have a "top" div that contains a 100% width/height image. If the user scrolls down, the top div scrolls away and then they can see the main ...
1
vote
0answers
51 views
Scroll to Fix - use Plagin
I'm trying to use this code in my project.
This is my project
This is code of my js:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" ...
1
vote
0answers
54 views
javascript - Getting correct scroll position on window.onerror
I'm trying to show errors in a custom box, with some info (line number, file name...), inside a DIV that overlays page's body and avoids interactions with elements outside the box.
This is CSS of the ...
1
vote
0answers
171 views
disable webapp scrolling without killing click (tap) events in javascript
This is my first post so ill try to explain it clear:
Im working on a web application, but the main point is, that i want let my users feel like its a native app. In a native app you cant scroll like ...
