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
I tested in my application and in live demo. The bug is alive!
The steps: 1 . Perform any "filter" 2 . Perform any "sort" 3 . Remove the "filter"
The result is that you dont get all results again. The feature "sortCache" inside applyFilters function not work properly.
A workaround is simple: just comment it.
//if ($scope.sortOptions.predicate && $scope.sortCache && $scope.sortCache.predicate === $scope.sortOptions.predicate // && $scope.sortCache.direction === $scope.sortOptions.direction) { // $scope.filtered = $scope.sortCache.data.slice(); // sorted = true; //} else { $scope.filtered = $scope._gridOptions.data.slice(); //}
The text was updated successfully, but these errors were encountered:
Issue closed as duplicate of #57
Sorry, something went wrong.
sskozzlovv
No branches or pull requests
I tested in my application and in live demo. The bug is alive!
The steps:
1 . Perform any "filter"
2 . Perform any "sort"
3 . Remove the "filter"
The result is that you dont get all results again.
The feature "sortCache" inside applyFilters function not work properly.
A workaround is simple: just comment it.
The text was updated successfully, but these errors were encountered: