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
We have a grid with a link to a detail page, if we click the link and then return to the page with the grid, the paging info is lost. It would be great if we can automatically store that information in the url.
🤔 Expected Behavior
Change the url if the user is paging in the grid, by setting the url through the navigationmanager.
😯 Current Behavior
Paging information is lost
💁 Possible Solution
You tell the GridItemsProvider to load the current settings from the url upon load and save it to the url when changed. Possibly with a boolean to turn on this behavior.
🔦 Context
I considered building this myself, then thought I cannot possibly be to only one having this challenge.
💻 Examples
Page /users has a grid with (server-side) paging
The user goes to page 2 with the pagination control
Automatically the url is changed to /users?page=2
the user goes to a detail page
the user presses the back button in the browser
the user browses to /users?page=2
the GridItemsProvider loads the paging information from the url
The grid loads the correct data (page 2)
The text was updated successfully, but these errors were encountered:
🙋 Feature Request
We have a grid with a link to a detail page, if we click the link and then return to the page with the grid, the paging info is lost. It would be great if we can automatically store that information in the url.
🤔 Expected Behavior
Change the url if the user is paging in the grid, by setting the url through the navigationmanager.
😯 Current Behavior
Paging information is lost
💁 Possible Solution
You tell the GridItemsProvider to load the current settings from the url upon load and save it to the url when changed. Possibly with a boolean to turn on this behavior.
🔦 Context
I considered building this myself, then thought I cannot possibly be to only one having this challenge.
💻 Examples
/users
has a grid with (server-side) paging/users?page=2
/users?page=2
The text was updated successfully, but these errors were encountered: