How to automatically scroll to the bottom in AngularJS?

ticcky

In my AngularJS app there is a controller which contains a list with messages:

$scope.messages = []

This list is updated as the application runs. In the template it is rendered in the following way:

<div style="height: 200px; overflow: auto">
...
    <li ng-repeat="msg in messages">{{msg}}</li>
...

But when more messages comes than fits the 200px height, the scroll remains on the top.

How to automatically scroll to the bottom of the message list?

ticcky

There is a directive "scroll-glue" from this library https://github.com/Luegg/angularjs-scroll-glue that solves the problem.

Just add scroll-glue directive to the div:

<div style="height: 200px; overflow: auto" scroll-glue>
...

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to scroll to automatically scroll to the bottom of an editable div onload

From Java

Scroll Automatically to the Bottom of the Page

From Dev

Scroll Bottom Angularjs Directive

From Dev

How would I make a div automatically scroll to the bottom?

From Dev

r - How do I automatically scroll to the bottom of a div in shinyapp?

From Dev

Automatically scroll to bottom as the page loads

From Dev

Scroll to bottom in chat box in angularjs

From Dev

angularjs infinite scroll bottom top

From Dev

how to scroll top and bottom

From Java

How to scroll to bottom in react?

From Dev

How to always scroll to bottom?

From Dev

How to scroll ListView to the bottom?

From Dev

How to scroll ListView to the bottom?

From Dev

How to scroll to bottom of tableview?

From Dev

ng-repeat render and automatically scroll to bottom

From Dev

Scroll automatically to the bottom page - speed control

From Dev

Angularjs: How to trigger event when scroll reaches to the bottom of the scroll bar in div?

From Dev

How to scroll the window automatically when mouse moves bottom of the page using jquery

From Dev

Scroll to bottom of page after get request AngularJs

From Java

How to programatically scroll a ScrollView to the bottom?

From Dev

How to fix JTextArea Scroll to bottom?

From Dev

How to scroll UICollectionView to the bottom programatically?

From Dev

Espresso: how to scroll to the bottom of ScrollView

From Dev

ListView : how to always scroll to the bottom

From Dev

Ionic : how to detect bottom scroll?

From Dev

How to write imacro to scroll to bottom

From Dev

How To Scroll to the bottom of a TreeView in tkinter

From Dev

Enthought Canopy (python) does not scroll to bottom of output automatically

From Dev

Automatically scroll the listview from top to bottom in c#

Related Related

  1. 1

    How to scroll to automatically scroll to the bottom of an editable div onload

  2. 2

    Scroll Automatically to the Bottom of the Page

  3. 3

    Scroll Bottom Angularjs Directive

  4. 4

    How would I make a div automatically scroll to the bottom?

  5. 5

    r - How do I automatically scroll to the bottom of a div in shinyapp?

  6. 6

    Automatically scroll to bottom as the page loads

  7. 7

    Scroll to bottom in chat box in angularjs

  8. 8

    angularjs infinite scroll bottom top

  9. 9

    how to scroll top and bottom

  10. 10

    How to scroll to bottom in react?

  11. 11

    How to always scroll to bottom?

  12. 12

    How to scroll ListView to the bottom?

  13. 13

    How to scroll ListView to the bottom?

  14. 14

    How to scroll to bottom of tableview?

  15. 15

    ng-repeat render and automatically scroll to bottom

  16. 16

    Scroll automatically to the bottom page - speed control

  17. 17

    Angularjs: How to trigger event when scroll reaches to the bottom of the scroll bar in div?

  18. 18

    How to scroll the window automatically when mouse moves bottom of the page using jquery

  19. 19

    Scroll to bottom of page after get request AngularJs

  20. 20

    How to programatically scroll a ScrollView to the bottom?

  21. 21

    How to fix JTextArea Scroll to bottom?

  22. 22

    How to scroll UICollectionView to the bottom programatically?

  23. 23

    Espresso: how to scroll to the bottom of ScrollView

  24. 24

    ListView : how to always scroll to the bottom

  25. 25

    Ionic : how to detect bottom scroll?

  26. 26

    How to write imacro to scroll to bottom

  27. 27

    How To Scroll to the bottom of a TreeView in tkinter

  28. 28

    Enthought Canopy (python) does not scroll to bottom of output automatically

  29. 29

    Automatically scroll the listview from top to bottom in c#

HotTag

Archive