Commit e74801616fed25a6bd3fc651bfa4ce4789ce3874

Authored by Mukul Rajput
1 parent 114ceb05

this is solution for the bug state maintain Grid in AA

400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
... ... @@ -139,7 +139,7 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou
139 139 }
140 140 )
141 141 if ($rootScope.getLocalStorageValue('AAGridViewScroll') !== null) {
142   - $('html, body').animate({ scrollTop: $rootScope.getLocalStorageValue('AAGridViewScroll') }, 'slow');
  142 + setTimeout(function () { $('html, body').animate({ scrollTop: $rootScope.getLocalStorageValue('AAGridViewScroll') }, 'slow'); }, 300);
143 143 }
144 144 }
145 145  
... ...