zjm1126
zjm1126

Reputation: 66647

Any simple frameworks for pagination in App Engine?

I want to find a framework for pagination in Google App Engine.

Do you know of one?

Upvotes: 1

Views: 916

Answers (2)

Peter Recore
Peter Recore

Reputation: 14187

If you want to do paging you should read about cursors. The article linked to by Jason was written before cursors were around. Cursors can simplify paging greatly, especially in cases that Andrew mentions, when dealing with sorts and filters.

Upvotes: 3

Andrew B.
Andrew B.

Reputation: 1050

Pagination is not always easy-to-do, especially when you consider sorting and filtering. Check out this recipe as a start: http://appengine-cookbook.appspot.com/recipe/efficient-paging-for-any-query-and-any-model/

Upvotes: 2

Related Questions