Forum Discussion
- _anomDiebolt_Qrew EliteYou 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?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- srivallivalluriQrew TraineeThank you
- _anomDiebolt_Qrew 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.
- srivallivalluriQrew Traineeyeah, thank you understood,will go with it
- ChuckGrigsbyQrew CadetAlso check out API_GenResultsTable
https://help.quickbase.com/api-guide/gen_results_table.html - srivallivalluriQrew Traineeok sure ,than you