ここで私はこの問題を解決しました。基本的な考え方は、配列を手動で並べ替えることです。配列にはすべてのデータが含まれ、改ページが再度行われます。
初期ソート値
$scope.sortInfo = {fields: ['id'], directions: ['asc']};
特定のフィールドにデータをソートする関数を定義
// sort over all data
function sortData (field, direction) {
if (!$scope.allData) return;
$scope.allData.sort(function (a, b) {
if (direction == "asc") {
return a[field] > b[field] ? 1 : -1;
} else {
return a[field] > b[field] ? -1 : 1;
}
})
}
がsortInfo
を見て、変更setPagingData
がある
// sort over all data, not only the data on current page
$scope.$watch('sortInfo', function (newVal, oldVal) {
sortData(newVal.fields[0], newVal.directions[0]);
$scope.pagingOptions.currentPage = 1;
setPagingData($scope.pagingOptions.currentPage, $scope.pagingOptions.pageSize)
}, true);
に反応定義
// pick the slice we currently want to see
function setPagingData (page, pageSize){
if (!$scope.allData) return;
$scope.totalServerItems = $scope.allData.length;
$scope.myData = $scope.allData.slice((page - 1) * pageSize, page * pageSize);;
};
はあなたのgridOptionsにsortInfoを設定
$scope.gridOptions = {
sortInfo: $scope.sortInfo,
useExternalSorting: true,
}