You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this example https://www.infragistics.com/react-demos/grids/grid/remote-paging-grid the remote paging logic is not correctly implemented. There is a new endpoint now for Customers data that allows us to fetch records by given page size and number. We should refactor the code to use that instead, so that we can decrease the number of requests being made.
Currently we are getting all records at once and doing the paging logic only on the UI.
Desired result: make an http call to the new endpoint so that each time we get only the small portion of records we need for the current page size and number.
In this example https://www.infragistics.com/react-demos/grids/grid/remote-paging-grid the remote paging logic is not correctly implemented. There is a new endpoint now for Customers data that allows us to fetch records by given page size and number. We should refactor the code to use that instead, so that we can decrease the number of requests being made.
Currently we are getting all records at once and doing the paging logic only on the UI.
Desired result: make an http call to the new endpoint so that each time we get only the small portion of records we need for the current page size and number.
Endpoint: https://data-northwind.indigo.design/swagger/index.html ->
Customers/GetCustomersWithPage
The text was updated successfully, but these errors were encountered: