Is there pagination blinking for ember.js?

I am writing my own pagination logic that will be similar to Ember.SortableMixin, but with paging support. Does something like this still exist in pre 1.0 build?

If this does not exist, is the transfer request welcome in this particular behavior? I assume that 90% of the applications there need a simple pagination / sorting and, with the built-in mix, cut out nearly 60 lines of code.

Thank you in advance

Update

I answered another question "ember / pagination", and my full blow-up (working example) can be found below

Detailed paginated example

+3
source share
4 answers

Here is the simple one I used: https://gist.github.com/1559628

This is one of the best ember contributors.

+5
source share

I just came across emberjs-pageable . at first glance it looks pretty good, but I'm not sure if it is still supported.

+2
source share

I used this https://github.com/mathieul/page_wrapper

Especially for use with Rails, but can be easily adopted.

Really happy with it so far.

0
source share

Here is a great blog post that talks about pagination (although this is not a copy / mixin pattern)

http://resistor.io/blog/2013/10/01/simple-pagination-in-ember-arraycontrollers/

0
source share

All Articles