Re: gwt navigation with 3rd party app in iframe

2013-08-12 Thread Lance Frohman
I got the pages to not blink, but the back button does not work correctly, you need to click it three times to get to the page it should go to. It was doing this before I made your fix. thanks On Fri, Aug 9, 2013 at 9:16 AM, Lance Frohman lfroh...@gmail.com wrote: Thank you. On Thursday,

Re: gwt navigation with 3rd party app in iframe

2013-08-12 Thread Jens
I got the pages to not blink, but the back button does not work correctly, you need to click it three times to get to the page it should go to. It was doing this before I made your fix. Well thats expected as you update the URL whenever a navigation inside the 3rd party app occurs. I

Re: gwt navigation with 3rd party app in iframe

2013-08-09 Thread Lance Frohman
Thank you. On Thursday, August 8, 2013 1:05:12 PM UTC-7, Jens wrote: You need to cache the activity that displays the 3rd party app so it does not get recreated in your ActivityMapper each time you navigate inside the 3rd party app. So your URLs should look like

gwt navigation with 3rd party app in iframe

2013-08-08 Thread Lance Frohman
I have a GWT application with navigation designed using the samples (Place,Activity,EventBus ...) There is a navigation bar, and a Panel where the actual navigation takes place. In some cases, the panel is filled with a third party app using a com.google.gwt.user.client.ui.Frame iframe. The

Re: gwt navigation with 3rd party app in iframe

2013-08-08 Thread Jens
You need to cache the activity that displays the 3rd party app so it does not get recreated in your ActivityMapper each time you navigate inside the 3rd party app. So your URLs should look like /#ThirdPartyAppPlace:app=page1 /#ThirdPartyAppPlace:app=page2param=x /#ThirdPartyAppPlace:app=page3