you'd actually use first column as start, empty finish, count=pagesize, and reversed=True, unless I'm misunderstanding something.
On Tue, Feb 23, 2010 at 1:57 PM, Brandon Williams <dri...@gmail.com> wrote: > On Tue, Feb 23, 2010 at 11:54 AM, Sonny Heer <sonnyh...@gmail.com> wrote: >> >> > Columns can easily be paginated via the 'start' and 'finish' parameters. >> > You can't jump to a random page, but you can provide next/previous >> > behavior. >> >> Do you have an example of this? From a client, they can pass in the >> last key, which can then be used as the start with some predefined >> count. But how can you do previous? > > To go backwards, you pass the first column seen as the finish parameter and > use an empty start parameter with an appropriate count. > -Brandon