我想在加載數據時滾動到網格的末端。但代碼不起作用。請幫助滾動以結束網格UI-Grid Angular js
$scope.addData = function() {
var n = $scope.gridOptions.data.length + 1;
$scope.gridOptions.data.push({
"type":"student",
"is_job_ready":"true",
"is_night_shift":"true"
});
$scope.scrollTo($scope.gridOptions.data.length -1,0)
};
$scope.scrollTo = function(rowIndex, colIndex) {
$scope.gridApi.core.scrollTo($scope.gridOptions.data[rowIndex],$scope.gridOptions.columnDefs[colIndex]);
};