Hi all,
I'm planning to update the grid used in my application so that when a user adds a filter to my grid, chooses "view details" on a row available after applying the filters, then returns to the Grid, the Grid will still maintain the filters they added
before.
Essentially, when they drill down, view something available after drilling down, then go back (browser back button), it is smart enough to remember how they had affected the grid.
I have never done this before, but as far as I know there are two options...
1. Session variables - Difficulty being, I only want to persist their grid filters if the previous page was a details page of a record; otherwise, it should reset the grid because we assume they are coming from an unrelated page.
2. Managing Browser History via Javascript ...
Go to the complete details ...