On Tuesday, January 8, 2013 12:16:54 PM UTC-5, DrG wrote: > > Is there an elegant solution to handle when a new release is deployed > while you are in the GWT app? E.g. we want the application to notice a new > version of itself and automatically do a full page refresh? > > Ideas? >
In the project I am working on: If new version is detected, store the state of the application locally in browser as cookies before refreshing the page. When the page is refreshed, read the cookies and restore the state of the application, and then delete those cookies. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/1g1bI1BxwUwJ. 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.
