Currently, I am developing a web application using AngularJs. One issue that I am facing is related to filtered data.
After applying specific parameters through checkboxes and radio buttons to filter the data, I navigate to another state. However, when the user goes back using the browser button, instead of retrieving the previously filtered data, a generic state data appears.
For example,
Let's say I have a list of professionals and I use filters for age and gender to narrow down the results. After filtering the data, if I click on a professional's details and then go back using the browser, it shows me the entire list of professionals rather than the filtered one.
I would appreciate any assistance in solving this issue. It seems that passing some parameters in the state URL during the filtering process could help in achieving the desired outcome. But how can I implement this?
Is there anyone who can provide guidance on this matter?