I m new to GWT, and I m sure this is answered in SO somewhere but I ve yet to find
I downloaded the GWT 2.0 eclipse plugin, and was pleased to see it comes with a starter project.
However, I was surprised that when running it, there is an unpleasent flickering...
- The text loads without the CSS first
- It takes a while untill the select box apears
(If you don t see the flicker, try and press F5 to refresh)
All mature GWT apps seem to have a loader before that but I didn t find an easy, standard way to add it.
It seems this app loads in this order: (correct me please if I mixed it up, its only my guess)
- Basic layout HTML,
- All JavaScript, and CSS
- Runs the logic on the "onload" event (soonest time your compiled javaScript can start - ?)
So I can t programmatically add a loading spinner before GWT was loaded, a bit of a catch 22 for me
Am I missing something basic? is there a best practice way to add that initial spinner?
I was thinking simply adding a div with an animated gif, and in the onload event - hide it.
But I m sure there is something better.
Let me know if this is a duplicate question
Update: found this related question, not answering mine though...