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 was archived by the owner on Mar 11, 2025. It is now read-only.
First of all, many thanks for maintaining this package.
I have been looking everywhere for a solution to force a refresh of the content of the grid but could not find any "official one".
Case study:
I have a form to create a new entry or edit an existing one
Via an external form, I am creating/editing an item that I save at the server side.
Because the grid is a view that combines several entities, I cannot directly add a row, or even update an existing one.
This explains why I would really like to force a refresh (aka a fetch).
The only solution I could find was to update the PlutoLazyPaginationState and make it external, so that I can use a GlobalKey and invoke the key.currentState?.setPage(1);
But this is not ideal.