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
{{ message }}
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
I'm trying to work with server side pagination : The server return a portion of rows and I want to display it and show the CORRECT paginator. Of course when the user click on the next page, a call to the server with the number of page and pageSize will be made. Changing the pageSize also will refresh the table ...
Well, I don't think there is a reason to explain the scenario because it is so basic.
The thing is, I'm trying to migrate to AG-Grid from another other library. After a weeks of reading around you documentation, the internet, on Stackoverflow, I still not able to achieve this basic example. I spent the Trial Key period searching ONLY for this feature.
Please, let me know if this is not possible.
And please if it's possible, please, for the love of god, add a good exemple about this in your documentation so developers can understand how to mock the paginator, make call to API to refresh the data ... etc
This is an example with : http://reqres.in to mock the server API.
But I can't go further in this example !
Still searching how to update the rows after the chamngement of the page :
onPaginationChanged = event => {
// Calling new api with the next page
this.fetchApi(event.api.paginationProxy.currentPage + 1);
// What should I do here ?!
};
Please, add a good example about this in your website !
I'm trying to work with server side pagination : The server return a portion of rows and I want to display it and show the CORRECT paginator. Of course when the user click on the next page, a call to the server with the number of page and pageSize will be made. Changing the pageSize also will refresh the table ...
Well, I don't think there is a reason to explain the scenario because it is so basic.
The thing is, I'm trying to migrate to AG-Grid from another other library. After a weeks of reading around you documentation, the internet, on Stackoverflow, I still not able to achieve this basic example. I spent the Trial Key period searching ONLY for this feature.
Please, let me know if this is not possible.
And please if it's possible, please, for the love of god, add a good exemple about this in your documentation so developers can understand how to mock the paginator, make call to API to refresh the data ... etc
This is an example with : http://reqres.in to mock the server API.
But I can't go further in this example !
The text was updated successfully, but these errors were encountered: