Re: IE (8 9) reload app when internal link clicked

2011-04-14 Thread Andy
I just replied to another person that I think is experiencing the same issue: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/addcece637e80138/66b8d354a637c9c1#66b8d354a637c9c1 It's really nasty but you can see our workaround in this thread:

Aw: IE (8 9) reload app when internal link clicked

2011-04-14 Thread Jens
Change it to GWT Hyperlinks and I think it should work in IE. I had a similar problem using GWT Anchors, see: http://code.google.com/p/google-web-toolkit/issues/detail?id=5280 . In my case I used GWT Anchors with ClickHandlers which result in a href=javascript:;link/a code and IE unloads the

Re: IE (8 9) reload app when internal link clicked

2011-04-14 Thread Andy
That is a good suggestion, but in our case, the HTML was coming from the server via RPC and inserted into the page using setInnerHTML. Therefore the links weren't GWT widgets at all. On Apr 14, 10:45 am, Jens jens.nehlme...@gmail.com wrote: Change it to GWT Hyperlinks and I think it should work

Aw: Re: IE (8 9) reload app when internal link clicked

2011-04-14 Thread Jens
Hm ok..if you can not change your code to use GWT widgets (only widgets are mostly cross browser compatible) then you probably can create a custom widget that takes the generated html from the server to display it but also listens for DOM click events (using sinkEvents and onBrowserEvent). And

IE (8 9) reload app when internal link clicked

2011-04-13 Thread bryan
My GWT app has in the initial HTML page div id=loadingimg src=images/loading.gif/div which puts up a loading animation. Then when the app loads: public void onModuleLoad() { DOM.removeChild(RootPanel.getBodyElement(), DOM.getElementById(loading)); .. removes the animation, which all