I have a GWT application with MVP pattern.
I have two views in a page. Filter and Result view.
When I choose any filter, I am calling goto() to go to the current place. This functionally works fine. But it rewrites a Filter view also. I dont want the filter view to be re-written since I am calling goto() to go to the same place.
I am using a cachingactivity mapper. How can I use the latest activity and not rewrite the view?
Please help.