Is there a way to scroll to the ionic-list programmatically? $ionicScrollDelegate has all the methods I want, but the $ionicListDelegate is missing these methods.
Well if you want to “scroll” to the top, it will require you to use $ionicScrollDelegate 
$ionicListDelegate is for handling functions that effect list-items
Ok, now I got it! You can use the $ionicScrollDelegate for controlling the scroll view of the ionic-list. I wasn’t aware of that. Thanks!