Re: How to hide page or set invisible during page loading

2016-07-21 Thread Thomas Broyer
On Thursday, July 21, 2016 at 3:06:33 PM UTC+2, Gilberto wrote: > > Without changing the host page there's little you can do in GWT to avoid > showing the original page: the page is rendered while the GWT module itself > is loading. So you can't execute GWT code without loading it first. > > If

Re: How to hide page or set invisible during page loading

2016-07-21 Thread Gilberto
Without changing the host page there's little you can do in GWT to avoid showing the original page: the page is rendered while the GWT module itself is loading. So you can't execute GWT code without loading it first. If you can change the the host page, you could add a script to do some logic b

How to hide page or set invisible during page loading

2016-07-21 Thread David
I used GWT to change original PC html page layout to mobile layout without accessing original html source code. During page loading, I can see the original html page PC layout. I want to hide it or make it invisible until new layout is formed during page loading. How do I achieve it? Some of th