We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If resource.pagination is missing in the Table server side the pagination is broke. Possible fix
resource.pagination
$scope.rows = resource.rows; if ($scope.paginationDirective) { $scope.pagination.page = $scope.params.page; $scope.pagination.count = $scope.params.count; $scope.pagination.size = $scope.rows.length; if (resource.pagination) { if (resource.pagination.count) { $scope.pagination.count = resource.pagination.count; } if (resource.pagination.page) { $scope.pagination.page = resource.pagination.page; } if (resource.pagination.size) { $scope.pagination.size = resource.pagination.size; } } $scope.pagination.pages = Math.ceil($scope.pagination.size / $scope.pagination.count); }
The text was updated successfully, but these errors were encountered:
Wrote test for recreate issue #68
42c2dbe
Zizzamia
No branches or pull requests
If
resource.pagination
is missing in the Table server side the pagination is broke.Possible fix
The text was updated successfully, but these errors were encountered: