ember-cli-pagination icon indicating copy to clipboard operation
ember-cli-pagination copied to clipboard

Pagination Addon for Ember CLI

Results 75 ember-cli-pagination issues
Sort by recently updated
recently updated
newest added

Now that `ember-data` final is in the wild and it's default to JSON API, a lot of people are going to be making moves to make their APIs compatible. I...

What I'm trying to achieve is to have "Remote Paginated API" with persisted `page` paremeter as a **query param**. Assume following code based on the [Remote Paginated API](https://www.npmjs.com/package/ember-cli-pagination#remote-paginated-api) section from...

![image](https://user-images.githubusercontent.com/34644417/39966236-ad966f90-56da-11e8-8abc-bb2cd749d6c0.png) setOtherParam will force the ember-cli-pagination to re-fetch current page.. However in my case, it would not work if I were to re-fetch the current page for the second time.....

A lot of codemods and tweaks to get the tests working with ember-qunit instead of ember-cli-qunit

I am having an issue very similar to https://github.com/mharris717/ember-cli-pagination/issues/206. That said the meta portion my response is a little bit different: ```json "meta": { "pagination": { "page": 1, "pages": 6,...

I discovered this issue just now while implementing pagination in my project. The underlying stack trace and error messaging surrounding the issue were not clear, so I did a bit...

Similar to Google, I'd like to scroll to top when going to a new page. I could use an observer but would rather the addon did this? Many thanks

Is there a way to get this working with ember-concurrency? I'm using the [ember-router-scroll addon](https://github.com/dollarshaveclub/ember-router-scroll), to support service way to call that functions... So to get what I want working...

There seems to be an issue with rendering page-numbers twice on a page for the same set of data which results in the following error: ```Uncaught Error: Assertion Failed: You...

in my afterModel I do something like this ``` var parentRecordType = model.constructor.typeKey; var parentRecordId = parseInt(model.id, 10); var invoicesOptions = { parentRecordType: parentRecordType, parentRecordId: parentRecordId, modelName: 'invoice', store: this.store,...