Hi all, I have an endpoint to return data in a paginated way, actually the endpoint returns the following information:
{
"totalItems": 100,
"currentPage": 1,
"totalPages": 5,
"items": []
}
i need to bind this object to the grid, i can pass the items to the grid, but i'm wondering on how the grid can show me 5 pages? and after that how to get the page number clicked.
BTW, If needed, i can change the property names.
Thanks!