Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
You use the parameter options with num-n and skp-n values to indicate the number or records you want (num-n) and how many to skp (skp-n) based on the current sort order.
To grab 10 records as a time you would use URLs similar to these
To grab 10 records as a time you would use URLs similar to these
?act=API_DoQuery&qid=1&options=num-10.skp-0
?act=API_DoQuery&qid=1&options=num-10.skp-10
?act=API_DoQuery&qid=1&options=num-10.skp-20
- srivallivalluri8 years agoQrew TraineeThank you
- _anomDiebolt_8 years agoQrew EliteThat features is called "infinite scroll" and you can find libraries for that using google. Bear in mind that API_DoQuery would just fetch the next bucket of records on the appropriate scroll event. You still have to render the XML data to HTML and append it to the current display. That would be highly dependent on your architecture and technology you are using.
- srivallivalluri8 years agoQrew Traineeyeah, thank you understood,will go with it