Pagination (again...) Other users filters/pages affecting each other?

Found some advice on this in the closed issues and resolved the regex. Correct format:

'partialSearch': { $regex: "partial", $options: "i"}

All that remains are minor issues, that may have solutions. But it seems this might be a package that - while not perfect - is acceptable for use in production.

If the initial load time could be optimized, and a load screen added, it would be perfect!

Turns out the information provided by the author on the github issues is incorrect.

But one of the commentors solutions DID work - the one the author correct him with did NOT work.

Working solution for loading:

 pageReady:function(){
        var instance = Template.instance();
        var pagesChange = instance.pagination.getPage();
        return instance.pagination.ready();
    }
1 Like