I have a grid for which data is loaded dynamically from a server.
The subset of data to be loaded is based on various user selections made through other components on the page. Once selections are made, a button is clicked, extraParams are set, and the grid data is loaded via PHP POST. This is all working fine.
Question: What approach could I take to save the resulting page/grid view as a URL link? Or conversely, how can I load that page again (showing the data subset) via a URL?
(BTW I'm fine switching to PHP GET if it ends up being part of the solution.)