Vertical scroll bar takes time to resize if records increase

My list items increasing pragmatically but scroll bar takes time to re-size the page. Actually on the page i ahve option to get next 10 records so if user tap on that then those records binding with list successfully but scroll bar taking approx 300ms to 500ms time to re size the page.
I tested it on version beta 4 with emulators and android devices.

1 Like

Are you calling .resize?

.controller('MainCtrl', function ($scope,  $ionicScrollDelegate) {

  $scope.toggleGroup = function (group) {
     //get some data function

    $ionicScrollDelegate.resize();


  };
1 Like

As you add items to the list, you need to tell the scroller about the changes.

$ionicScrollDelegate.resize()

thank its working as charm… you guys are great and giving wonderful support …
My interest to work with ionic and angular is increasing day by day.

1 Like

Could this be used with an ng-hide?
I have bar that when clicked has an image dropdown but the scrolling for the page doesn’t work for a sec or two.
here is the code:

  <a class="item no-left-right-border" ng-click="goMenu = !goMenu" >Show Menu</a>
            <img ng-src="{{menu_url}}"  width ="100%"class="img-responsive img-thumbnail" ng-hide="goMenu">