Pagination

Comments

  • We are getting the data from a REST API & displaying on a report (advanced datagrid). API returns only 10 records at a time, we pass it a parameter "offset" & based on this param, it will return the next 10 records. Basically, we are not receiving the entire data set from the API, we want show these records on the report & show a pager control, on click on the page number it will make a API call & pass the offset paramter & get the relevant set of records to display on the UI.
    On decisions, i could only find the default paging option, which expects the entire dataset & then does the paging based on the number of records per page. Is there a way to do paging as above where you dont get the entire result set from the API?

Sign In or Register to comment.