littleq0903 / appengine-admin

Automatically exported from code.google.com/p/appengine-admin
0 stars 0 forks source link

Paging for admin list view #4

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Paging long results otherwise datastore times out and I had to set
limit in listGql.

Original issue reported on code.google.com by valdiic on 27 Nov 2008 at 12:50

GoogleCodeExporter commented 9 years ago

Original comment by valdiic on 27 Nov 2008 at 1:08

GoogleCodeExporter commented 9 years ago
listgql could take limit and offset parameters:
limitnumber = items per page 
offsetnumber = pagenumber*limit-limit, pagenumber > 0.
listGql = 'limit limitnumber offset offsetnumber'

Original comment by nikla...@gmail.com on 29 Nov 2008 at 12:43

GoogleCodeExporter commented 9 years ago
Fix committed with r42 
(http://code.google.com/p/appengine-admin/source/detail?r=42)

Original comment by valdiic on 8 Dec 2008 at 10:51