DF19.1
What are the methods/events responsible for restoring the StateHash after a session timeout ?
And How can I block that from happening for some particular views ?
Basically, I want to disable the capability of restoring the state to certain views, after a session timeout, and force the user back to default view after the forced re-login.
------------
I have some very custom views (not DD-bound), that only works based on web-properties being passed along the navigation process to them.
If user leave the app opened in one of those views, go to lunch or whatever, and return hours back, it's session is expired, he Receives the proper notification that he needs to re-login,
But after he logs in, the framework tries to load the same previous vies, which is not functional at all , because all the web-properties associated with previous session is gone..
I need to intercept the restore state-hash mechanism at view level, and cancel it some how.. for these particular views only and move them to the default dashboard instead.
Was not able to find any method/event at view level for that, or some other that I can intercept it and specially cancel it..
Regards