Would recommend Django Endless Pagination. It has a Jquery plugin
which can easily be extended

On Mon, Feb 16, 2015 at 4:44 PM, ragsagar <ragsa...@gmail.com> wrote:
> On Mon, Feb 16, 2015 at 11:26 AM, Gora Mohanty <g...@mimirtech.com> wrote:
>
>> On 16 February 2015 at 12:42, Shashidhar Paragonda
>> <shashidha...@gmail.com> wrote:
>> > hello hackers,
>> >
>> > I need help on implementing pagination for Restful responses in django,
>> > front hand I am using angular js.
>> > Basically I get customer details from rest request and I need to divide
>> > then by 25 per page with pagination how can I achieve this. No Db
>> involved
>> > here.
>>
>>
> You can use django.core.paginator.Paginator. You can pass it the list of
> objects you want to paginate.
>
>
>
>> If the front-end is in AngularJS, you should probably do the
>> pagination there. The JSON sent to AngularJS can contain a list of the
>> entities to be paginated.
>>
>>
> If the number of items is large, it is better to do the pagination in
> django itself, Since angular tends to become slow when rendering large
> number of items especially when using ng-render.
>
>
>
> Regards,
>> Gora
>> _______________________________________________
>> BangPypers mailing list
>> BangPypers@python.org
>> https://mail.python.org/mailman/listinfo/bangpypers
>>
>
>
>
> --
> blog : blog.ragsagar.in
> mail id : python -c "print '@'.join(['ragsagar','.'.join([x for x in
> ['gmail','com']])])"
> _______________________________________________
> BangPypers mailing list
> BangPypers@python.org
> https://mail.python.org/mailman/listinfo/bangpypers
_______________________________________________
BangPypers mailing list
BangPypers@python.org
https://mail.python.org/mailman/listinfo/bangpypers

Reply via email to