A behaviour of a control that allows automatic scrolling capability.
Questions tagged [autoscroll]
592 questions
13
votes
3 answers
How can I show scrollbars on a PictureBox control?
Sometimes, I have a picturebox lets say 100x100. But the image it will display is actually 100x400.
I don't want to increase the size of the picturebox itself. Instead, I would like to create a vertical scrollbar (or horizontal if needed).
I could…

Saturn
- 17,888
- 49
- 145
- 271
13
votes
9 answers
ionic 2 + angular 2 : auto scroll to bottom of list / page / chat
I'm trying to code a page with two segments "chat" and "content". I want that one "chat" segment the page auto-scroll to the bottom with no effect. The chat is a with several .
item 1
…

sandrina-p
- 3,794
- 8
- 32
- 60
12
votes
2 answers
how to design Single page application with auto-scrolling tabs in Android?
I have seen a few single page Application websites, in which whenever we tap any of the tab, the page gets scrolled vertically in order to show that selected section, and vice versa, if we scroll the page vertically, then the tabs automatically get…

Narendra Singh
- 3,990
- 5
- 37
- 78
12
votes
1 answer
angular 2 - How to get HTMLElement / ElementRef of child component using template reference variable?
I'm trying to get element of child component using ViewChild but can't find a way to achieve this.
Let's say in template:
...
...
and getting this reference by:
import { SomeComponent } from…

Dangular
- 389
- 1
- 3
- 15
10
votes
3 answers
How to autoscroll to the end of RichEdit?
I never needed to use the TRichEdit before, always used TMemo.
I'd like RichEdit autoscrolling to the end when I add text like TMemo. See how it looks after you add some data:
As you can see, the scroll bar remains at the top, but I'd like it…

Daniel Grillo
- 2,368
- 4
- 37
- 62
9
votes
4 answers
jCarousel - how to get pause on hover with autoscroll?
JCarousel have recently changed (january 2011).
It used to have a way to implement pause on hover with autoscroll.
With the new version I cannot solve how to get autoscroll to stop on hover:
I would like the scroll to stop on mouseover and start…

user1152435
- 91
- 1
- 1
- 3
9
votes
1 answer
angular cdk drag drop - adjust autoscroll speed when dragging
UPDATE 11.07.2020
Issue on Github https://github.com/angular/components/issues/19401
ORIGINAL POST
Is there a way to adjust the scroll speed when dragging an item down or up the list?
In Firefox on macOS, it behaves as expected, scrolling faster the…

Han Che
- 8,239
- 19
- 70
- 116
9
votes
4 answers
Flutter how to create List view autoscrolling?
I'm trying to make a ListView that auto-scrolls to the newest data point.
I tired to do this by making a _scrollToBottom function that uses the .jumpTo method.
But i get a blank screen in the app, and
'child.parentData != null': is not true. in…

CrustyWang
- 171
- 1
- 2
- 8
9
votes
4 answers
Why does clicking in a text box cause an AutoScroll panel to scroll back to the top?
Finishing up a register form in a C# application and I noticed with the panel if I enable AutoScroll and then have a textbox that is below the scroll and click on it it jumps all the way back up to the top. Is there a way to fix this with some code…

Sean
- 541
- 1
- 6
- 4
9
votes
5 answers
.net scrollbar autoscroll problem
I'm writing an app in .net that uses the autoscroll for a layout panel in a dialog.
It seems that whenever I resize the window so that the vertical scrollbars should appear, the horizontal scrollbar automatically appears also. Looking closely at…

Matthias Wandel
- 6,383
- 10
- 33
- 31
9
votes
4 answers
jQuery auto scroll a div Up & down
I have written a fiddle that scrolls a div up and down automatically which is working fine. But there is an issue when it scrolls down, it doesn't show the last row ("String4" in this case). can anybody help me to sort this out please.

Nomesh DeSilva
- 1,649
- 4
- 25
- 43
9
votes
1 answer
Autoscroll down angularjs
Hi I'm creating a chat app with angularjs that autoscrolls down when a user messages another user. I'm not sure how to implement this as my chat window is a fixed ul element. I'm thinking I will need to implement a directive to do this…

user1424508
- 3,231
- 13
- 40
- 66
8
votes
0 answers
React-beautiful-dnd: Prevent page from scrolling when draggable is being dragged near edge of page
I'm using react-beautiful-dnd in a project and when I'm dragging a draggable, the page auto scrolls if I drag it near the top, bottom or sides of the page. I could theoretically fix this problem by placing the drag and drop container in the middle…

Brownie Cart
- 81
- 2
7
votes
3 answers
Python Tkinter Text Widget with Auto & Custom Scroll
I wrote a simple Tkinter based Python application that reads text from a serial connection and adds it to the window, specifically a text widged.
After a lot of tweaks and some very strange exceptions, this works. Then I added autoscrolling by doing…

jaw
- 932
- 2
- 10
- 24
7
votes
1 answer
Auto-Scrolling Divs w/ JQuery (Foursquare Feed alike)
So I make a call for records with JQuery when the page loads like this:
$.ajax(
{
type: "POST",
url: "<%= Url.Action("GetRecords", "Home") %>",
data: sessioninfo,
success: function(data){
…

slandau
- 23,528
- 42
- 122
- 184