Hi everyone. I was wondering what is the best approach on retrieving paged
data with dataScroller, but
paging not just the raw collection, but paging in SGDB level. How can I
achieve it?
Thanks in advance and Best All


This is the approach we usually use working with SQL tables.

There is a sample:
http://www.emozionifotografiche.it/galleria_foto.jsf?idg=36

that table is base on a query:

SELECT FIRST 5 SKIP (cuurentpage - 1) * FROM IMMAGINI

and the four arrows on bottom of page change the value of CurrentPage via page URL in order to be linkable.

if you need some detail, let me know.


Reply via email to