UI网格在无限滚动上多次显示最后一条记录

时间:2016-12-21 06:33:36

标签: angularjs angular-ui-grid infinite-scroll ui-grid

hex value

Before Scrolling

在网格首次加载时,我正在正确获取数据。 向下滚动后出现问题。 它显示每行中第一个加载的最后一条记录的最后一条记录。

下面是我的无限滚动功能代码。

$scope.getDataDown = function() {
  var promise = $q.defer();
  $scope.lastPage++;
  if ($scope.data.length < $scope.total) {
    $http(getRequest()).success(function(data) {
      promise.resolve();
      var jb = JSON.stringify(data.content);
      $scope.gridApi.infiniteScroll.saveScrollPercentage();
      $scope.data = $scope.data.concat(data.content);
      $scope.total = data.total ? data.total : data.length;
      $scope.length = $scope.data.length;
      $scope.gridApi.infiniteScroll.dataLoaded(false,
          $scope.lastPage < ($scope.total / $scope.pageSize));
    }).error(function(error) {
          $scope.gridApi.infiniteScroll.dataLoaded();
        });
  }
  return promise.promise;
};

1 个答案:

答案 0 :(得分:1)

我明白了。 Funciton是对的,但我在我的代码中使用了以下函数,它与此函数冲突

$scope.gridOptions.rowIdentity = function(row) { return row.id; };