Local-Storage,
how to paging it?
IE:
first page fetch 1-5 items,
second page fetch 6-10 items.
3td page, list 11–15 items…
any SQL example? thanks
SELECT * FROM USER WHERE AGE < 10 LIMIT 10; May I use “TOP 10” here?
Detail API:
http://docs.phonegap.com/en/1.8.0/cordova_storage_storage.md.html#Storage
For first page you can use:
Similarly for other page.
I hope it will work.