I have a left-nav which I am hiding/showing based on the user's logged in status. All my events are history managed. If a user bookmarked a url and is coming to a url directly, I need to intercept the request and send him to the login page. Once he is authenticated, I need to send him to the requested url. Currently, the default behavior is when an event (say... userLoggedin) is triggered a presenter from the main module (to un-hide the left nav) and a presenter from a submodule (to display the dashboard view) handle this event. (for example. <code> <event type="userLoggedin" handlers="mainPresenter" modulesToLoad="someSubModule" eventObjectClass="someObject"/> </ code> ) However, if the requested url is for a different sub-module, how would I still deal with the left nav display before loading the needed sub-module ?
-- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
