Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

dirPagination v0.11.0 - Pagination Semi-Broken #325

Closed
DougHayward opened this issue Mar 31, 2016 · 3 comments
Closed

dirPagination v0.11.0 - Pagination Semi-Broken #325

DougHayward opened this issue Mar 31, 2016 · 3 comments

Comments

@DougHayward
Copy link

Hi, I have recently implemented dirPagination into my project. I'm attempting to iterate over a JSON Object which work's to a point.

On initial page load the Pagination works great. However if I navigate away from the page but then return the pagination breaks with an error of:

pagination directive: the itemsPerPage id argument (id: __default) does not match a registered pagination-id.
Error: instances[instanceId] is undefined

I currently implement it as per the documentation with:

<!-- View File  (Simplified) -->
<div ui-view ng-init="getData()">
   <tr dir-paginate="data in datas| toArray:false | filter:query | orderBy: sortKey:reverse | itemsPerPage:5">
   </tr>
    <dir-pagination-controls
    max-size="5"
    direction-links="true"
    boundary-links="true" >
   </dir-pagination-controls>
</div>

<!-- Controller (Simplified) -->
$scope.getData = function () {
    DataSender.get('Data').then(function (data) {
        if (data) {
            $scope.datas = data;
        }
    });
};

The data still gets loaded however the pagination buttons do nothing except error into the console. It also breaks filtering, though I think this is just a knock on effect. If I replace dir-paginate with ng-repeat it works when navigating between pages but obviously without the pagination ability.

I'm using Angular v1.5.1 and dirPagination v0.11.0

@DougHayward
Copy link
Author

Having read other issues, I tried rolling back to version 0.10.1, which fixes the issue. Something to do with garbage collection?

@michaelbromley
Copy link
Owner

Please update to v0.11.1 (I reverted the memory-leak fix) and let me know if this solves this issue.

@DougHayward
Copy link
Author

Sorry for the late reply. Yes this has fixed the issue and it works great again.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants