ember-cli-pagination
ember-cli-pagination copied to clipboard
Pagination Addon for Ember CLI
I need to do some sorting server-side, my first try was to set a parameter on findPaged, and set the model function to observe changes on that parameter. The requests...
If I am in an action function, how do I tell the pager to pull a new list of records from the remote REST server? I see that the pager...
I managed to make this work from a component by doing the following: templates/products.hbs ``` javascript {{products-pagination products=category.product_ids}} ``` templates/components/products-pagination.hbs ``` javascript {{#each product in pagedProducts}} {{product.name}} {{/each}} {{page-numbers content=pagedProducts}}...
I'm trying to implement this with `Infinite Pagination with All Records Present Locally` and it loads the first set of data perfectly fine! :) But how would you trigger to...
Whenever I change a page, the request is made, even if I browse back to route that the model is already loaded for. Is there a way to not request...
To ensure other params follow Rails conventions, snake case other params when retrieving data from a remote endpoint.