Closed antoinebrault closed 8 years ago
I think we should select the nearest page, which would be the last, not the first. What do you think?
$scope.$watch('$pagination.total', function (newValue, oldValue) {
if(newValue === oldValue) {
return;
}
if(self.page > self.pages()) {
self.last();
}
});
Okay, this should be fixed in v0.10.1
.
On client side filtering, page must change automatically when total is updated.